-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.css
70 lines (66 loc) · 1.18 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
58
59
60
61
62
63
64
65
66
67
68
69
70
body {
display: flex;
flex-direction: column;
align-items: center;
background-color: #f4f6ff;
font-family: "Roboto Slab", serif;
}
.container {
display: grid;
grid-template-columns: repeat(10, 40px);
grid-template-rows: repeat(10, 40px);
grid-row-gap: 13px;
grid-column-gap: 13px;
}
button {
width: 7em;
height: auto;
color: white;
border: 4px solid white;
font-size: 20px;
background-color: #f7977a;
cursor: pointer;
margin-bottom: 1rem;
}
a {
color: #f7977a;
}
.node {
background-color: #8bcdcd;
text-align: center;
border-radius: 10px;
display: flex;
justify-content: center;
align-items: center;
}
.explanation {
max-width: 55vh;
}
.tab button {
background-color: #ccc;
}
.tab button.active {
background-color: #f7977a;
}
.tabcontent {
display: none;
border: 1px solid #ccc;
}
@media only screen and (max-width: 600px) {
body {
margin-top: 1em;
font-size: small;
}
button {
border: 4px solid white;
font-size: 10px;
text-align: center;
}
.container {
display: grid;
grid-template-columns: repeat(10, 28px);
grid-template-rows: repeat(10, 28px);
grid-row-gap: 8px;
grid-column-gap: 8px;
}
}