-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
57 lines (54 loc) · 1.06 KB
/
index.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
/* default styles */
* {
padding: 0px;
margin: 0px;
box-sizing: border-box;
font-family: Segoe UI, sans-serif;
transition-duration: 0.25s;
text-align: center;
}
/* page header */
header {
background-color: #48d1cc;
color: #000000;
width: 100%;
padding: 10px;
margin-bottom: 15px;
}
header h1 {
font-size: 25px;
}
/* simulation links */
#simulationLinks {
padding: 15px;
padding-top: 0px;
}
#simulationLinks a {
display: inline-block;
margin: 15px;
line-height: 50px;
width: 200px;
background-color: #E0E0E0;
color: #000000;
text-decoration: none;
}
#simulationLinks a:hover, #simulationLinks a:focus {
box-shadow: 0 0 15px #808080;
transform: scale(1.1);
}
@media only screen and (max-width: 500px) {
#simulationLinks a {
width: calc(100% - 30px);
}
}
/* dark mode */
@media only screen and (prefers-color-scheme: dark) {
body {
background: #202020;
color: #e0e0e0;
}
#simulationLinks a {
background: #404040;
color: #e0e0e0;
}
}