forked from buckyroberts/Source-Code-from-Tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlanding.css
More file actions
110 lines (92 loc) · 1.75 KB
/
Copy pathlanding.css
File metadata and controls
110 lines (92 loc) · 1.75 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
110
body,
html {
width: 100%;
height: 100%;
}
body,
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Droid Sans', sans-serif;
font-weight: bold;
}
.topnav {
font-size: 14px;
}
/* Have padding top so banner image doesn't overlap top nav */
.intro-banner {
padding-top: 50px;
padding-bottom: 50px;
text-align: center;
color: #f2f2f2;
background: url("wood.jpg") no-repeat center center;
background-size: cover;
}
.intro-inner {
position: relative;
padding-top: 20%;
padding-bottom: 20%;
}
.intro-inner > h1 {
margin: 0;
text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
font-size: 5em;
}
.intro-divider {
width: 400px;
border-top: 1px solid #f2f2f2;
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.intro-inner > h3 {
text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
}
/* Special paragraphs that stand out */
.lead {
font-size: 20px;
}
/* For smaller devices */
@media (max-width: 767px) {
.intro-inner {
padding-bottom: 15%;
}
.intro-inner > h1 {
font-size: 3em;
}
ul.intro-social-buttons > li {
display: block;
margin-bottom: 20px;
padding: 0;
}
ul.intro-social-buttons > li:last-child {
margin-bottom: 0;
}
.intro-divider {
width: 100%;
}
}
.button-title {
font-family: 'Architects Daughter', cursive;
font-size: 18px;
}
.content-section-a {
padding: 50px 0;
background-color: #f2f2f2;
}
.content-section-b {
padding: 50px 0;
border-top: 1px solid #e3e3e3;
border-bottom: 1px solid #e3e3e3;
}
/* hr */
.section-heading-spacer {
float: left;
width: 200px;
border-top: 3px solid #e3e3e3;
}
/* Little paragraph snippet sections */
.section-heading {
margin-bottom: 30px;
}