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
|
|
|
}
|
|
|
|
|
|
2020-10-15 17:11:55 +00:00
|
|
|
.title {
|
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
|
|
|
}
|
|
|
|
|
|
2020-10-15 17:11:55 +00:00
|
|
|
.btn--remix {
|
|
|
|
|
padding-left: .75rem;
|
|
|
|
|
padding-right: .75rem;
|
|
|
|
|
padding-top: .5rem;
|
|
|
|
|
padding-bottom: .5rem;
|
|
|
|
|
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 {
|
|
|
|
|
margin-right: .75rem;
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-14 18:31:47 +00:00
|
|
|
.illustration {
|
2020-10-15 16:59:57 +00:00
|
|
|
position: relative;
|
|
|
|
|
bottom: 10em;
|
|
|
|
|
}
|