-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstyle.css
42 lines (34 loc) · 931 Bytes
/
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
@import url('https://fonts.googleapis.com/css?family=Lato');
* { margin:0; padding:0; box-sizing:border-box; }
html, body {
background: url(BG.png);
font-family: 'Lato', sans-serif;
color: #e5e5e5;
}
img {height: 110px; width: auto; right: 0; position: absolute; padding-top: 15px; padding-right: 20px;}
.container {
width: 1200px;
max-width: 100%;
height: 100%;
padding: 40px;
margin: auto;
}
#header{
right: 0;
background: #053542;
padding: 10px 17px 10px 17px;
width: 1200px;
max-width: 100%;
}
#header h1 { text-align: center; padding-bottom: 15px; }
#header p { font-size: 14px; text-align: center; padding-bottom: 8px;}
a { color: #55C34D; }
#table {
background-color: #02222B;
width: 100%;
padding: 10px;
}
tr:nth-child(even) {background: #021a21;}
tr, th, td { padding: 4px 6px 4px 12px; font-size: 15.5px;}
table {text-align: center; margin: auto; text-align: center;}
#footer {text-align: right;}