🐠💃 Checkpoint

./style.css:617503/1560
./illustration.svg:617503/21274
./index.html:617503/2204
This commit is contained in:
Glitch (hello-webpage)
2020-10-14 18:31:47 +00:00
parent 438a9734eb
commit 71238e790f
3 changed files with 64 additions and 13 deletions

View File

@ -1,12 +1,38 @@
/* CSS files add styling rules to your content */
/* Our CSS values that we'll use in the rest of our styling */
:root {
--main-bg-color: #69F7BE;
--main-text-color: #373fff;
}
body {
font-family: helvetica, arial, sans-serif;
margin: 2em;
background-color: #69F7BE;
background-color: var(--main-bg-color);
}
h1 {
color: #373fff;
color: var(--main-text-color);
font-size: 164pt;
}
.wrapper {
min-height: 100vh; // height of the browser viewport
display: flex;
justify-content: center;
align-items: center;
}
.content {
height: 100px;
width: 200px;
background: #fff;
padding: 50px;
border-radius: 10px;
position: relative;
text-align: center;
}
.illustration {
}