-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.css
90 lines (79 loc) · 1.27 KB
/
app.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
/**
* @file
* CSS for aquifer.io
*/
/**
* Fonts.
*/
@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,400italic);
/**
* Global styling.
*/
body, html {
pading: 0;
margin: 0;
}
body {
background: #fff;
font-family: 'Roboto', sans-serif;
font-weight: 300;
color: #333;
font-size: 18px;
line-height: 1.4;
}
a, a:hover, a:active, a:visited {
color: #0094B0;
text-decoration: none;
}
/**
* Header styling.
*/
header {
background: #fff;
padding: 30px 0 30px 0;
}
img#branding {
display: block;
margin: 0 auto;
width: 100%;
box-sizing: border-box;
padding: 30px;
border-bottom: 3px solid #0094B0;
}
@media (min-width: 730px) {
img#branding {
max-width: 730px;
}
}
/**
* Main styling.
*/
section#main, footer {
width: 100%;
max-width: 730px;
margin: 0 auto 30px auto;
padding: 0 20px 20px 20px;
box-sizing: border-box;
}
p.lead {
margin-top: 0;
}
/**
* Buttons
*/
a.btn, a.btn:active, a.btn:hover, a.btn:focus {
display: block;
width: 100%;
margin: 0 auto;
text-align: center;
background: #0094B0;
color: #fff;
text-decoration: none;
font-weight: 100;
margin-bottom: 10px;
padding: 10px 15px 10px 15px;
box-sizing: border-box;
}
a.btn:hover, a.btn:focus {
background-color: #355A38;
}