-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
103 lines (88 loc) · 1.36 KB
/
styles.css
File metadata and controls
103 lines (88 loc) · 1.36 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
body {
color: #777;
font-family: "PT Sans", sans-serif;
}
a {
color: #039be5;
text-decoration: none;
}
a:hover,
a:focus {
text-decoration: underline;
}
a:visited {
color: #0277bd;
}
.content {
max-width: 960px !important;
}
/*
The content `<div>` is where all your content goes.
*/
.content {
padding: 0 2em;
max-width: 800px;
margin: 0 auto 50px;
line-height: 1.6em;
}
.header {
margin: 0;
color: #333;
text-align: center;
padding: 2.5em 2em 0;
font-family: "PT Sans", sans-serif;
}
.header h1 {
margin: 0.2em 0;
font-size: 3em;
font-weight: 700;
font-family: "Montserrat", "PT Sans", sans-serif;
text-transform: uppercase;
}
.header h2 {
font-weight: 300;
color: #ccc;
padding: 0;
margin-top: 0;
}
.pure-img-responsive {
max-width: 100%;
height: auto;
}
.img-round img {
border-radius: 150px;
width: 300px;
}
@media (max-width: 770px) {
.header h1 {
font-size: 1.5em;
}
.header h2 {
font-size: 1em;
}
}
div.jumbo {
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
max-width: 960px;
margin: 10px auto 50px;
padding: 30px;
font-size: 1.2em;
font-weight: 600;
font-family: "PT Sans", sans-serif;
}
div.jumbo a {
text-decoration: underline;
color: inherit;
}
.left {
float: left;
}
.right {
float: right;
}
.clearfix::after {
content: "";
clear: both;
display: table;
}