forked from r128w/misc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
67 lines (56 loc) · 866 Bytes
/
main.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
.center{
margin-right:auto;
margin-left:auto;
width:fit-content;
display:block;
margin-bottom:5px;
margin-top:5px;
}
.container{
background-color: #272727;
padding:10px;
color:#fff;
}
.item{
background-color: #111;
padding:4px;
margin:5px;
color:#fff
}
.hidden{
display:none;
}
body{
background-color: #111;
color:#fff;
font-family:'luminari', monospace;
}
a{
color:#add
}
p{
margin-top:4px;
margin-bottom:4px;
}
footer{
position:fixed;
width:fit-content;
bottom:5px;
background-color: #111;
padding:4px;
}
button{
color:#fff;
background-color:#222;
border-radius:20%;
font-family:'luminari', monospace;
}
button:hover{
color:#111;
background-color:#fff;
}
button:active{
color:#111;
background-color:#add;
}
h6{color:#888}