forked from ArianaHernandez/where-its-at
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
207 lines (190 loc) · 4.05 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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
/******************************************************************************
START Glitch hello-app default styles
The styles in this section do some minimal CSS resets, set default fonts and
colors, and handle the layout for our footer and "Remix on Glitch" button. If
you're new to CSS they may seem a little complicated, but you can scroll down
to this section's matching END comment to see page-specific styles.
******************************************************************************/
:root {
--wrapper-height: 100vh;
--image-max-width: 200px;
--image-margin: 3rem;
--font-family: "HK Grotesk";
--font-family-header: "HK Grotesk";
}
/* Basic page style resets */
* {
box-sizing: border-box;
}
[hidden] {
display: none !important;
}
/* Import fonts */
@font-face {
font-family: HK Grotesk;
src: url("https://cdn.glitch.com/605e2a51-d45f-4d87-a285-9410ad350515%2FHKGrotesk-Regular.otf?v=1603136326027")
format("opentype");
}
@font-face {
font-family: HK Grotesk;
font-weight: bold;
src: url("https://cdn.glitch.com/605e2a51-d45f-4d87-a285-9410ad350515%2FHKGrotesk-Bold.otf?v=1603136323437")
format("opentype");
}
/******************************************************************************
END Glitch hello-app default styles
******************************************************************************/
body {
font-family: "Roboto", sans-serif;
background: linear-gradient(#F9E900, #ED33B9);
background-repeat: no-repeat;
background-size: cover;
}
/* Page structure */
.wrapper {
min-height: var(--wrapper-height);
display: grid;
place-items: center;
margin: 0 1rem;
}
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
/* Very light scaling for our illustration */
.title {
color: #5158BB;
font-family: "Sedgwick Ave Display", cursive;
font-style: normal;
font-weight: bold;
font-size: 80px;
margin: 0;
}
/* Very light scaling for our illustration */
.illustration {
max-width: 100%;
max-height: var(--image-max-width);
}
/* Button - Add it from the README instructions */
button,
input {
font-family: inherit;
font-size: 100%;
background: #FFFFFF;
border: 1px solid #000000;
box-sizing: border-box;
border-radius: 4px;
padding: 0.5rem 1rem;
transition: 500ms;
}
/* Subheading */
h2 {
color: #2800FF;
}
/* Interactive image */
.illustration:active {
transform: translateY(5px);
}
/* Button dip
- Toggling this class on and off will move it down and up again
- The button transition property above determines the speed of the translate (500ms)
*/
.dipped {
transform: translateY(5px);
}
#locator {
display: flex;
}
#locatorText {
font-size: 40px;
color: #5158BB;
}
#navigation {
width: 100%;
top: 0;
left: 0;
overflow: hidden;
position: fixed;
box-shadow: 20px 20px 50px grey;
display: flex;
justify-content: space-between;
color: #5158BB;
background-color: #F9E900;
}
#left {
font-family: "Sedgwick Ave Display", cursive;
margin-left: 10px;
display: flex;
align-items: center;
}
#right {
color: #5158BB;
display: flex;
width: 50%;
justify-content: space-around;
list-style-type: none;
}
a {
text-decoration: none;
color: #5158BB;
}
a:hover {
text-decoration: underline;
}
#gallery img {
height: 250px;
border: 5px ridge #F9E900;
}
#gallery {
display: grid;
grid-template-columns: auto auto auto;
grid-template-rows: auto auto;
grid-gap: 20px;
text-align: center;
}
.header {
color: #5158BB;
font-family: "Sedgwick Ave Display", cursive;
font-style: normal;
font-weight: bold;
font-size: 50px;
margin-top: 7%;
text-decoration: underline wavy;
}
#addArt {
display: flex;
flex-direction: column;
}
#imgurl {
margin-left: 45px;
}
.experienceImgs {
max-width: 300px;
}
.experiences {
text-align: center;
}
.donations {
color: #5158BB;
text-align: center;
width: 100vh;
height: 75vh;
display: flex;
justify-content: space-around;
}
.vl {
border-left: 3px solid #94C9A9;
height: 92%;
}
h1,
h2,
h3 {
color: #5158BB;
}
.institutions,
.supplies,
.volunteer {
color: black;
}