Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
Latest commit
109 lines (95 loc) · 1.54 KB
/
Copy pathapp.css
File metadata and controls
109 lines (95 loc) · 1.54 KB
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
/**
* @file
* CSS for humpbackdev.com
*/
/**
* Fonts.
*/
@importurl(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:#007BC9;
text-decoration: none;
}
/**
* Header styling.
*/
header {
background:#FFF;
padding:30px030px0;
}
img#branding {
display: block;
margin:0 auto;
width:100%;
box-sizing: border-box;
padding:30px;
border-bottom:3px solid #2F3B48;
}
@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:020px20px20px;
box-sizing: border-box;
}
@media (min-width:585px) {
footer {
padding:45px20px20px20px;
}
}
p.lead {
margin-top:0;
}
.code-line {
display: block;
margin-left:10%;
}
/**
* Buttons
*/
a.btn,a.btn:active,a.btn:hover,a.btn:focus {
display: block;
width:100%;
text-align: center;
background:#2F3B48;
color:#FFF;
text-decoration: none;
font-weight:100;
margin-bottom:10px;
padding:10px15px10px15px;
box-sizing: border-box;
}
@media (min-width:585px) {
a.btn,a.btn:active,a.btn:hover,a.btn:focus {
display: block;
width:49%;
float: left;
margin:2px;
}
}
a.btn:hover,a.btn:focus {
background-color:#007BC9;
}