forked from y8tireu/NumEquator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
110 lines (97 loc) · 1.81 KB
/
styles.css
File metadata and controls
110 lines (97 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/* General Styles */
body {
font-family: 'Arial', sans-serif;
background-color: #121212;
margin: 0;
padding: 0;
color: #ffffff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
max-width: 600px;
width: 90%;
background: #000000;
padding: 30px;
border-radius: 15px;
box-shadow: 0 0 20px rgba(173, 216, 230, 0.8);
text-align: center;
position: relative;
overflow: hidden;
}
.container::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(60deg, rgba(173, 216, 230, 0.2), rgba(173, 216, 230, 0.2));
animation: rotate 6s linear infinite;
z-index: -1;
}
@keyframes rotate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
h1 {
margin-bottom: 20px;
font-size: 1.8rem;
color: #add8e6;
}
label {
display: block;
margin: 10px 0 5px;
text-align: left;
color: #b3b3b3;
}
input, select, button {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: none;
border-radius: 4px;
font-size: 1rem;
outline: none;
}
input, select {
background: #000000;
color: #ffffff;
border: 1px solid rgba(173, 216, 230, 0.5);
}
input::placeholder {
color: #cccccc;
}
button {
background: #000000;
color: #ffffff;
font-size: 1rem;
font-weight: bold;
cursor: pointer;
border: 1px solid #add8e6;
transition: background 0.3s ease, border-color 0.3s ease;
}
button:hover {
background: #add8e6;
color: #000000;
border-color: #ffffff;
}
#results {
margin-top: 20px;
}
.equation {
background: rgba(255, 255, 255, 0.1);
padding: 10px;
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 4px;
margin-bottom: 10px;
color: #ffffff;
font-family: 'Courier New', Courier, monospace;
text-align: left;
}