-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathstyle.css
68 lines (58 loc) · 929 Bytes
/
style.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
/*
* Some Default Styles are provided for your convenience.
* You can start adding your own CSS below line 60.
*/
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: Helvetica, Arial, sans-serif;
}
p {
color: #252525;
line-height: 1.5em;
}
h1 {
font-size: 3em;
}
h2 {
font-size: 2em;
font-weight: normal;
}
h1, h2, h3, nav {
font-family: "Saira Extra Condensed", sans-serif;
}
/* Responsive images */
img {
max-width: 100%;
height: auto;
}
/* Default section styling */
section {
position: relative;
width: 100vw;
overflow: hidden;
}
section h2 {
text-align: center;
position: relative;
margin: 60px 0;
}
section h2:after {
content: "";
position: absolute;
bottom: -20px;
width: 60px;
height: 1px;
background-color: #f39c12;
left: 50%;
margin-left: -30px;
}
/* Header defaults */
header {
background-color: rgba(37, 37, 37, 0.8);
}
/*
* YOUR CSS:
*/