-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
96 lines (74 loc) · 1.14 KB
/
style.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
/*
* {
border: 1px solid red;
}
*/
html {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
color: #ddd;
}
body {
background-color:#000;
}
header {
display:flex;
text-align: center;
}
footer {
text-align: center;
color: #888;
}
#news {
background-color: #222;
}
#live {
background-color: #222;
}
#wrapper {
margin: 2% 12%;
}
section {
background-color: #111;
margin: auto;
margin-top: 10px;
padding: 1rem;
border-radius: 12px;
filter: drop-shadow(8px 8px 4px rgba(20,20,20,0.8));
font-size: 1.5rem;
}
section > h1, section > h2, section > h3 {
margin: 0;
padding: 0;
border: 0;
}
section > ul {
margin-top: 0;
margin-bottom: 0;
}
header > div {
padding: 10px;
}
.true {
list-style-type: "✔️";
padding-left: 1rem;
}
.false {
list-style-type: "⚠️";
padding-left: 1rem;
}
.link {
list-style-type: "🔗";
padding-left: 1rem;
}
#header-left {
flex-grow: 1;
text-align: right;
}
#header-right {
flex-grow: 1;
font-size: 69px;
text-align: left;
}
#logo {
height: 100px;
}