-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
64 lines (62 loc) · 1.15 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
html, body {
overflow: hidden;
display: table;
background: #ddd;
color: #fff;
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
.cell {
display: table-cell;
vertical-align: middle;
text-align: center;
}
body {
background: #ddd;
padding-top: 73px;
max-height: 100%;
}
header a:not(.img) {
margin: 10px 20px;
width: 90%;
}
header {
height: 70px;
}
@media only screen and (max-width:800px) {
header a:not(.img) {
display: block;
}
}
a.link {
width: 100%;
display: block;
border-bottom: 1px solid #444;
background-color: #fff;
color: #3e4556;
font-size: 70px;
text-decoration: none;
text-align: left;
font-weight: lighter;
background-image: url(https://storage.googleapis.com/material-icons/external-assets/v4/icons/svg/ic_keyboard_arrow_right_black_24px.svg);
background-size: contain;
background-repeat: no-repeat;
background-position: right;
}
a.link:nth-child(even) {
border-top: 1px solid #444;
}
.link span {
display: inline-block;
height: 100%;
margin: 5px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.link img {
display: inline-block;
width: 49px;
padding: 5px;
margin-left: 10px;
}