blob: 7ee02b74434b1fbf8503972dd4b5cf8653243cb8 (
plain)
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
208
209
|
html {
background-color: #d1f7ff;
font-family: "Inter", sans-serif;
}
@supports (font-variation-settings: normal) {
html {
font-family: "Inter var", sans-serif;
}
}
body {
display: flex;
color: #333;
}
#nav {
display: flex;
position: absolute;
top: 0;
left: 0;
align-self: flex-start; /* makes flex element only as vertically large as needed for sticky */
flex-direction: column;
width: 12rem;
text-align: center;
}
#content {
width: 100%;
max-width: 1400px;
margin-left: auto;
margin-right: auto;
padding-left: 1rem;
padding-right: 1rem;
background-color: #00000011;
display: flex;
flex-direction: column;
}
/* Reusable Elements */
h1 {
font-size: 4rem;
font-weight: 700;
color: #000;
margin-top: 0.5rem;
margin-bottom: 0.5rem;
}
h3 {
font-size: large;
font-weight: 700;
color: #000;
}
#logo {
width: 100%;
}
hr {
width: 100%;
/* horizontal rule css style */
border: 2px solid #333;
border-bottom: none;
margin-top: 0.25rem;
margin-bottom: 0.25rem;
}
/* Cool Button */
/* CSS Button - https://getcssscan.com/css-buttons-examples UIForms #74 */
.button {
background-color: #fbeee0;
border: 2px solid #422800;
border-radius: 30px;
box-shadow: #422800 4px 4px 0 0;
color: #000;
cursor: pointer;
display: inline-block;
font-weight: 700;
font-size: 1rem;
line-height: 2.5rem;
text-align: center;
text-decoration: none;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
min-width: 120px;
padding: 0 25px;
transition: all 0.05s ease-in-out;
}
.button:hover {
background-color: #fff;
}
.button:active {
box-shadow: #422800 2px 2px 0 0;
transform: translate(2px, 2px);
}
/* Link Styling - https://codepen.io/team/css-tricks/pen/xxPORam */
.link {
text-decoration: none;
position: relative;
color: #18272f;
font-weight: 700;
}
.link::before {
content: "";
background-color: #00000044;
position: absolute;
left: 0;
bottom: -0.125rem;
width: 100%;
height: 2px;
z-index: -1;
transition: all 0.2s ease-out;
}
.link:hover::before {
bottom: 0;
height: 100%;
background-color: #00000011;
border-radius: 5%;
transform: scale(1.1);
}
@media (min-width: 768px) {
.button {
min-width: 120px;
padding: 0 25px;
}
}
/* Individual Elements */
#business-hours {
display: flex;
flex-direction: column;
margin-top: 0.25rem;
margin-bottom: 0.25rem;
}
#business-hours > * {
padding-top: 0.25rem;
padding-bottom: 0.25rem;
}
#nav-links {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#nav-links > * {
margin-top: 1rem;
margin-bottom: 0.25rem;
}
#welcome {
height: 75vh;
display: flex;
flex-direction: column;
justify-content: center;
}
/* Media Queries */
@media screen and (max-width: 1000px) {
.hide-mobile {
display: none;
}
body {
flex-direction: column;
}
#nav {
width: 100%;
background: #a6b198;
height: 1.9rem;
overflow: hidden;
padding: 0rem;
padding-top: 0.5rem;
padding-bottom: 0.5rem;
position: absolute;
}
#logo {
width: 2rem;
}
#logo-wrapper {
display: flex;
align-items: center;
}
}
@media screen and (min-width: 1000px) {
.hide-desktop {
display: none;
}
}
|