-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
176 lines (143 loc) · 2.9 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
/* don't forget that box-sizing: border-box; may save your ass with align-items: center;. It's why the grey box wouldn't get text aligning how you wanted */
/* main text and non-class styling */
body, * {
margin: 0;
padding: 0;
font-family: 'Roboto'; /*
outline: 1px solid red; */
text-decoration: none;
}
h1 {
font-size: 48px;
font-weight: bolder;
color: #F9FAF8;
}
h2, .links, p, button {
font-size: 18px;
color: #A9AAA8;
font-weight: lighter;
}
button {
border-radius: 10px;
border: none;
margin-top: 16px;
padding: 8px 32px;
background-color: #3882F6;
color: #F9FAF8;
}
/* header - first section of four on the landing page */
.header {
background-color: #1F2937;
padding: 0 200px 200px 200px;
}
/* bar of information at the top of the page in header section */
.top-bar {
margin-bottom: 120px;
padding-top: 10px;
min-width: 400px;
}
.logo {
display: flex;
justify-content: space-between;
align-content: center;
flex: 1;
font-size: 24px;
font-weight: bolder;
color: #F9FAF8;
}
.links {
display: flex;
font-size: 18px;
color: #E5E7EB;
gap: 16px;
}
/* hero text and image in header supgroup */
.hero {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
}
.text-container, .image-container {
width: 100%;
min-width: 200px;
}
.spaniel {
max-width: 100%;
max-height: 100%;
display: block;
}
/* second - second section of four on the landing page */
.second {
background-color: #F9FAF8;
text-align: center;
padding-bottom: 48px;
}
.second-text {
color: #1F2937;
font-size: 36px;
font-weight: bolder;
margin: 48px;
}
.icons {
display: flex;
justify-content: center;
gap: 48px;
margin-bottom: 48px;
}
.individual-icons {
width: 150px;
}
.image {
height: 150px;
width: 150px;
border-radius: 10px;
box-sizing: border-box;
border: 5px solid #3882FC;
}
/* quote section - third of four sections */
.quote {
background-color: #E5E7EB;
padding: 120px 400px;
}
blockquote {
font-size: 34px;
font-weight: light;
font-style: italic;
color: #505959;
}
.citation {
color: #1F2937;
font-size: 24px;
font-weight: bolder;
margin-top: 12px;
text-align: end;
}
/* action section - fourth of four sections */
.action {
background-color: #3882F6;
border-radius: 10px;
margin: 100px 200px;
padding: 50px 120px;
display: flex;
justify-content: space-between;
align-items: center;
}
.action-header{
font-size: 24px;
font-weight: bolder;
color: #F9FAF8;
}
.action-sub {
font-size: 16px;
font-weight: 100;
color: #E5E7EB;
}
button.click-me {
border: 5px solid white;
margin-left: 24px;
}
a {
color: white;
}