Files
fedizinefest-deprecated/style.css
T

103 lines
1.8 KiB
CSS
Raw Normal View History

2020-10-15 20:27:52 +00:00
/* Our default values set for mobile */
2020-10-14 18:31:47 +00:00
:root {
2020-10-15 20:27:52 +00:00
--color-bg: #69F7BE;
--color-text-main: #373fff;
--wrapper-height: 120vh;
2020-10-15 17:46:51 +00:00
}
2020-10-15 20:27:52 +00:00
/* Tablet portrait */
@media (min-width: 768px) {
2020-10-15 17:46:51 +00:00
:root {
2020-10-15 20:27:52 +00:00
--wrapper-hight: 80vh;
}
}
/* Tablet Landscape */
@media (min-width: 1024px) {
:root {
--wrapper-height: 80vh;
}
}
/* Desktop */
@media (min-width: 1280px) {
:root {
--wrapper-height: 90vh;
2020-10-15 17:46:51 +00:00
}
2020-10-14 18:31:47 +00:00
}
2020-10-15 17:23:03 +00:00
@font-face {
2020-10-15 20:27:52 +00:00
font-family: HK Grotesk;
src: url("https://cdn.glitch.com/a9975ea6-8949-4bab-addb-8a95021dc2da%2FHKGrotesk-Regular.otf?v=1602782380076")
format("opentype");
2020-10-15 17:23:03 +00:00
}
@font-face {
2020-10-15 20:27:52 +00:00
font-family: HK Grotesk;
font-weight: bold;
src: url("https://cdn.glitch.com/a9975ea6-8949-4bab-addb-8a95021dc2da%2FHKGrotesk-Bold.otf?v=1602782484249")
format("opentype");
2020-10-15 17:23:03 +00:00
}
2018-03-19 20:01:30 +00:00
body {
2020-10-15 17:23:03 +00:00
font-family: HK Grotesk;
2020-10-15 20:27:52 +00:00
background-color: var(--color-bg);
2018-03-19 20:01:30 +00:00
}
2020-10-15 17:11:55 +00:00
.title {
2020-10-15 20:27:52 +00:00
color: var(--color-text-main);
2020-10-15 17:23:03 +00:00
font-family: HK Grotesk;
font-style: normal;
font-weight: bold;
2020-10-15 20:27:52 +00:00
font-size: 134px;
2020-10-15 17:23:03 +00:00
line-height: 105%;
2018-03-14 21:57:55 +00:00
}
2020-10-14 18:31:47 +00:00
.wrapper {
2020-10-15 17:46:51 +00:00
min-height: var(--wrapper-height);
2020-10-15 16:59:57 +00:00
display: grid;
2020-10-15 17:34:52 +00:00
place-items: center;
2020-10-14 18:31:47 +00:00
}
.content {
2020-10-15 16:59:57 +00:00
display: flex;
flex-direction: column;
padding: 1rem;
2020-10-14 18:31:47 +00:00
}
2020-10-15 20:27:52 +00:00
/* Navigation grid */
.navigation {
2020-10-15 17:23:03 +00:00
display: grid;
place-items: end;
}
2020-10-15 20:27:52 +00:00
/* Our remix on glitch button + grid for other actions */
2020-10-15 17:11:55 +00:00
.btn--remix {
2020-10-15 17:34:52 +00:00
font-family: HK Grotesk;
2020-10-15 20:27:52 +00:00
padding-left: 0.75rem;
padding-right: 0.75rem;
padding-top: 0.5rem;
padding-bottom: 0.5rem;
2020-10-15 17:11:55 +00:00
font-size: 1.1rem;
line-height: 1rem;
font-weight: 500;
align-items: center;
display: inline-flex;
cursor: pointer;
background: #FFFFFF;
border: 1px solid #000000;
box-sizing: border-box;
border-radius: 4px;
}
.btn--remix img {
2020-10-15 20:27:52 +00:00
margin-right: 0.75rem;
2020-10-15 17:11:55 +00:00
}
2020-10-15 17:46:51 +00:00
/* Very light scaling for our illustration */
2020-10-14 18:31:47 +00:00
.illustration {
2020-10-15 20:27:52 +00:00
max-width: 70%;
max-height: 400px;
2020-10-15 16:59:57 +00:00
}