-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
110 lines (94 loc) · 2.06 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,900");
body {
background: url("bg.jpg") no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
color: #fff;
font-family: 'Source Sans Pro', sans-serif;
font-size: 15pt;
font-weight: 300 !important;
letter-spacing: -0.025em;
line-height: 1.75em;
}
#content {
min-height: calc(100vh - 100px);
vertical-align: middle;
text-align: center;
margin-left: 10%;
margin-right: 10%;
padding-top: 40px;
}
#content-text {
background: rgba(0,0,0,0.5);
padding: 10px;
}
#content-text p {
font-weight: 400;
}
#footer {
text-align: center;
height: 70px;
font-size: 0.75em;
}
a {
-moz-transition: border-color 0.2s ease-in-out;
-webkit-transition: border-color 0.2s ease-in-out;
-ms-transition: border-color 0.2s ease-in-out;
transition: border-color 0.2s ease-in-out;
border-bottom: dotted 1px;
color: inherit;
outline: 0;
text-decoration: none;
}
a:hover {
border-color: transparent;
}
#content nav {
margin: 1.5em 0 0 0;
}
#content nav li {
display: inline-block;
height: 5.35em;
line-height: 5.885em;
position: relative;
top: 0;
width: 5.35em;
}
#content nav a {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-webkit-touch-callout: none;
border: 0;
display: inline-block;
}
#content nav a:before {
border-radius: 100%;
border: solid 1px #fff;
display: block;
font-size: 1.75em;
height: 2.5em;
line-height: 2.5em;
position: relative;
text-align: center;
top: 0;
width: 2.5em;
}
#content nav a:hover {
font-size: 1.1em;
}
#content nav a:hover:before {
background-color: rgba(255, 255, 255, 0.175);
color: #fff;
}
#content nav a:active {
font-size: 0.95em;
background: none;
}
#content nav a:active:before {
background-color: rgba(255, 255, 255, 0.35);
color: #fff;
}
#content nav a span {
display: none;
}