-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
45 lines (44 loc) · 817 Bytes
/
main.css
File metadata and controls
45 lines (44 loc) · 817 Bytes
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
body {
font-family: 'Press Start 2P', cursive;
color: white;
background-color: rgba(256,256,256,0);
}
p {
padding-top: 15px;
padding-left: 1em;
position: relative;
top: -5px;
}
.sprite {
display: block;
padding-left: 2rem;
margin-left: 1rem;
background-repeat: no-repeat;
background-size: contain;
}
.container {
display: inline-block;
width: auto;
height: auto;
white-space: nowrap;
border-radius: 25px;
background-color: rgba(0,0,0,0.5);
padding-top: 1px;
padding-right: 4px;
}
/* Powers the vertical bar overlay */
@media screen and (max-height: 15rem) {
.container {
display: block ruby !important;
min-width: 45em;
}
p {
padding-left: 3em;
}
.container span:not(:last-child) > p:after {
content: " | ";
}
body {
overflow-x: hidden;
}
}