-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (41 loc) · 842 Bytes
/
style.css
File metadata and controls
55 lines (41 loc) · 842 Bytes
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
* {
margin: 0;
}
html, body {
height: 100%;
}
body {
background-color: #244C6D;
color: white;
font-family: 'Nunito', sans-serif;
text-align: center;
}
h1 { font-size: 80px;}
h2 { font-size: 65px;}
p { font-size: 24px;}
.container {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -30px auto; /* the bottom margin is the negative value of the footer's height */
}
footer, .push {
height: 30px; /* '.push' must be the same height as 'footer' */
}
img#logo {width: 20%;}
footer {
width: 100%;
text-align: right;
font-size: 16px;
margin-right: 15px;
background: rgba(255, 255, 255, 0.1);
}
p#footer-text {padding-right: 10px; font-size: 18px;}
footer a {
text-decoration: none;
color: #2D9DD7;
}
footer a:hover {
text-decoration: none;
color: rgba(255, 255, 255, 0.7);
}