-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.css
More file actions
93 lines (91 loc) · 1.61 KB
/
default.css
File metadata and controls
93 lines (91 loc) · 1.61 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
body{
background-color: beige;
font-size: 20px;
font-family: 'Josefin Sans', sans-serif;
}
h1{
text-align: center;
font-size: 48px;
padding-top: 100px;
padding-bottom: 50px;
font-weight: bold;
font-family: 'Josefin Slab', serif;
}
h2{
color: white;
text-align: center;
font-size: 48px;
padding: 50px 0px 50px 0;
font-family: 'Josefin Slab', serif;
}
h3{
padding-top: 25px;
}
.heroTitle{
color: white;
padding-top: 50px;
font-size: 40px;
font-family: 'Josefin Slab', serif;
}
.heroSubtitle{
font-size: 20px;
color: lightgrey;
font-family: 'Josefin Slab', serif;
}
.heroBG{
background-image: url(images/hero.jpg);
background-size: cover;
background-position: center;
border-bottom: 15px solid #3d3d3d;
height: 80vh;
}
.sectionThree{
padding-bottom: 75px;
}
.imageDes{
color: white;
}
.boldQuote h4{
font-weight: none;
font-size: 14px;
}
.boldQuote p{
font-family: 'Josefin Slab', serif;
font-weight: bold;
font-size: 24px;
}
.newSection2{
border-top: 15px solid brown;
background-color: black;
padding-top: 50px;
padding-bottom: 70px;
}
.newSection3{
background-color: antiquewhite;
border-top: 15px solid brown;
}
.imageSection{
margin: 0 auto;
width: 100%;
margin-bottom: 20px;
}
@media (min-width: 1200px){
body{
font-size: 22px;
}
h1{
font-size: 80px;
}
h2{
font-size: 60px;
}
.boldQuote{
font-size: 24px;
}
.heroTitle{
font-size: 90px;
}
.heroSubtitle{
font-size: 40px;
}
}