-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
66 lines (66 loc) · 1.29 KB
/
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
a {
color: dodgerblue;
}
body {
background-color: black;
background-image: linear-gradient(transparent 80%, black 100%), url("bg.png");
background-repeat: no-repeat;
background-size: 1920px 1080px;
color: white;
font-family: "Urbanist", sans-serif;
font-size: 1.2em;
}
body > .main {
left: 50%;
position: absolute;
top: 8px;
transform: translate(-50%, 0%);
width: 768px;
}
button {
background-color: white;
border: none;
border-bottom: solid 4px #AAAAAA;
border-top: solid 0px #444444;
cursor: pointer;
padding: 8px;
transition: 0.25s linear;
}
button:hover {
border-bottom: solid 0px #AAAAAA;
border-top: solid 4px #444444;
}
h1, h2, h3, h4, h5, h6, p {
margin: 0px;
}
img {
width: 100%;
}
.latest {
background-color: red;
border-bottom: solid 4px #AA0000;
display: inline-block;
height: 16px;
width: 16px;
}
.main > .main {
background-color: #444444;
border-bottom: solid 4px #222222;
padding: 8px;
margin-bottom: 8px;
}
.news {
border-top: solid 1px #222222;
margin-bottom: 4px;
padding-bottom: 4px;
margin-top: 4px;
padding-top: 4px;
}
.rules {
background-color: #333333;
border: solid 1px black;
padding: 8px;
}
.rules > hr {
border-color: black;
}