Files
fedizinefest-deprecated/style.css
T

34 lines
526 B
CSS
Raw Normal View History

2020-10-14 18:31:47 +00:00
/* Our CSS values that we'll use in the rest of our styling */
:root {
--main-bg-color: #69F7BE;
--main-text-color: #373fff;
}
2018-03-19 20:01:30 +00:00
body {
2019-10-23 17:47:19 +00:00
font-family: helvetica, arial, sans-serif;
2020-10-14 18:31:47 +00:00
background-color: var(--main-bg-color);
2018-03-19 20:01:30 +00:00
}
2017-10-10 12:57:38 +00:00
h1 {
2020-10-14 18:31:47 +00:00
color: var(--main-text-color);
2020-10-13 19:59:09 +00:00
font-size: 164pt;
2018-03-14 21:57:55 +00:00
}
2020-10-14 18:31:47 +00:00
.wrapper {
2020-10-15 16:59:57 +00:00
min-height: 100vh;
display: grid;
place-items: left;
2020-10-14 18:31:47 +00:00
}
.content {
2020-10-15 16:59:57 +00:00
width: clamp(23ch, 50%, 46ch);
display: flex;
flex-direction: column;
padding: 1rem;
2020-10-14 18:31:47 +00:00
}
.illustration {
2020-10-15 16:59:57 +00:00
position: relative;
bottom: 10em;
}