-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
127 lines (109 loc) · 2.14 KB
/
styles.css
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
padding: 20px;
box-sizing: border-box;
background-image: url('assets/images/background.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
font-family: "Space Mono", monospace;
width: 100%;}
.blurredcontainer {
width: 90%;
display: flex;
flex-direction: column;
max-width: 900px;
background-color: rgba(255, 255, 255, 0.7);
padding: 20px 30px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);}
h1 {
font-size: 4em;
color: #363636;
text-align: center;
}
.subtitle {
font-size: 1.2em;
margin-bottom: 20px;
color: #363636;
text-align: center;
}
.equation {
font-size: 1.2em;
font-weight: bold;
text-align: center;
}
.result {
font-size: 1.5em;
padding: 20px;
text-align: center;
color: #363636;
}
#result {
font-weight: bold;
color: #000000;
}
#form-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
form {
padding-top: 20px;
padding-bottom: 20px;
display: grid;
gap: 10px;
color: #363636;
font-size: 0.8em;
}
label {
font-weight: bold;
}
input {
font-family: "Space Mono", monospace;
border: none;
border-radius: 5px;
padding: 5px;
min-width: 150px;
}
button {
font-family: "Space Mono", monospace;
grid-column: span 2;
margin-top: 20px;
padding: 10px;
font-size: 1.4em;
background: linear-gradient(78deg, rgba(18,17,15,1) 33%, rgba(247,191,32,1) 100%);
color: white;
border: none;
cursor: pointer;
border-radius: 10px;
}
button:hover {
background: #636363;
}
canvas {
padding: 10px;
}
.scientific-explanation {
color: #363636;
}
.links-container {
text-align: left;
margin-bottom: 20px;
}
.links {
color: rgba(247,191,32,1);
justify-content: left;
text-align: left;
display: block;
margin-bottom: 5px;
}
.links:visited {
color: #363636;
}