-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommon.css
More file actions
63 lines (54 loc) · 1.07 KB
/
common.css
File metadata and controls
63 lines (54 loc) · 1.07 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
body {
background-color: #111;
text-align: center;
margin: 0;
padding: 20px;
}
.container {
display: grid;
grid-template-columns: repeat(auto-fill, 144px);
gap: 16px;
width: 100%;
}
.item {
aspect-ratio: 2 / 1;
display: flex;
align-items: center;
justify-content: center;
font-size: 15px;
}
.simple {
color: #eee;
border: 2px solid #eee;
text-shadow: 0 0 5px #eee;
}
.oxy {
color: #dab;
border: 2px solid #dab;
text-shadow: 0 0 5px #dab;
}
.acid {
color: #b64;
border: 2px solid #b64;
text-shadow: 0 0 5px #b64;
}
.alka {
color: aquamarine;
border: 2px solid aquamarine;
text-shadow: 0 0 5px aquamarine;
}
.salt {
color: rgb(36, 198, 114);
border: 2px solid rgb(36, 198, 114);
text-shadow: 0 0 5px rgb(36, 198, 114);
}
.orga {
color: rgb(125, 175, 226);
border: 2px solid rgb(125, 175, 226);
text-shadow: 0 0 5px rgb(125, 175, 226);
}
.atgp {
color: rgb(204, 226, 38);
border: 2px solid rgb(204, 226, 38);
text-shadow: 0 0 5px rgb(204, 226, 38)
}