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