-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
101 lines (95 loc) · 2.04 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
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
body {
display: flex;
flex-direction: column;
align-items: center;
background-color: #000000;
font-family:'Lucida Console', monospace;
font-weight: 400;
font-size: 14px;
}
.container {
display: grid;
grid-template-columns: repeat(10, 40px);
grid-template-rows: repeat(10, 40px);
grid-row-gap: 13px;
grid-column-gap: 13px;
}
.h {
font-family:'Lucida Console', monospace;
font-weight: 400;
font-size: 48px;
color: rgb(0, 251, 75);
}
.start {
font-family:'Lucida Console', monospace;
font-weight: 400;
font-size: 14px;
border-radius: 5px;
}
.refresh {
font-family:'Lucida Console', monospace;
font-weight: 400;
border-radius: 5px;
font-size: 14px;
}
button {
width: 7em;
height: auto;
color: rgb(47, 235, 10);
font-weight: 400;
border: 5px solid rgb(241, 6, 6);
font-size: 20px;
background-color: #c3175f;
cursor: pointer;
margin-bottom: 1rem;
}
a {
margin-left: 58px;
color: #24e92e;
}
.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: rgb(248, 8, 188);
}
.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;
}
}
footer {
background-color: black;
margin-top: 50px;
color: white;
text-align: center;
padding: 10px;
}