-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
151 lines (129 loc) · 2.54 KB
/
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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
/*Universal Styles*/
* {
font-size: 24px;
font-family: "Merriweather", serif;
font-style: italic;
}
/*Header*/
header {
position: fixed;
top: 0;
z-index: 10;
width: 100%;
background-color: white;
display: flex;
}
.nav-logo {
font-size: 2rem;
font-family: "Rock Salt", serif;
}
/*Nav*/
nav ul {
display: flex;
justify-content: flex-end;
font-size: 1rem;
margin-right: 2rem;
font-family: "Merriweather", serif;
font-style: italic;
border-bottom: .15rem solid hsla(37, 100%, 46%, 1);
}
ul li {
padding: 0rem 1rem;
}
/*Mission Statement*/
.mission {
position: relative;
margin-top: 8rem;
font-size: 1.375rem;
font-family: "Merriweather", serif;
color:black;
font-style: italic;
text-align: center;
}
/*Photo Gallery*/
main .container {
display: flex;
flex-flow: row wrap;
justify-content: center;
margin: 4rem;
}
.gallery img {
height: 16rem;
width: auto;
border: .65rem inset hsla(37, 100%, 46%, 078);
}
/*Services*/
.services {
text-align: center;
font-family: "Merriweather", serif;
font-style: italic;
color: black;
font-size: 2rem;
background-color: hsla(37, 100%, 46%, 0.62);
padding-top: 2rem;
border: .50rem solid hsla(37, 100%, 46%, 078)
}
.services h4 {
font-size: 1.85rem;
padding: 2rem 0rem 1rem 0rem;
}
.service-cards {
display: flex;
font-size: 1rem;
padding: 3rem;
}
.cards {
justify-content: center;
border: .135rem solid hsla(37, 100%, 46%, 0.62);
}
.cards p {
padding: 1rem 3rem;
line-height: 1.5rem;
}
/*Meet The Team*/
.t-container {
display: flex;
justify-content: center;
align-items: center;
flex-flow: row wrap;
font-family: "Merriweather", serif;
font-style: italic;
color: black;
}
.team h3 {
font-family: "Merriweather", serif;
font-style: italic;
font-size: 2rem;
text-align: center;
padding: 3rem;
}
.team h5 {
text-align: center;
font-size: 1.25rem;
padding-top: 1rem;
margin: .55rem;
}
.team p {
text-align: center;
font-size: 1rem;
}
.team {
padding: 1rem;
}
.team img {
height: 16rem;
width: 16rem;
object-fit: cover;
border: 1.2rem solid hsla(37, 100%, 46%, 1)
}
.contact {
font-family: "Merriweather", serif;
font-style: italic;
font-size: 1.25rem;
line-height: 2rem;
text-align: center;
margin-top: 2rem;
background-color: hsla(37, 100%, 46%, 0.62);
border: .50rem solid hsla(37, 100%, 46%, 078)
}
/*Footer*/