2023-02-27 13:15:43 +01:00
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2023-03-05 02:06:45 +01:00
|
|
|
body {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
min-height: 100vh;
|
2023-03-05 14:35:00 +01:00
|
|
|
font-family: 'Source Code Pro', monospace;
|
|
|
|
background: black;
|
|
|
|
color: white;
|
|
|
|
border: 1px solid purple;
|
2023-03-05 02:06:45 +01:00
|
|
|
}
|
|
|
|
|
2023-02-27 13:15:43 +01:00
|
|
|
.nav {
|
|
|
|
display: flex;
|
2023-03-05 02:06:45 +01:00
|
|
|
border: 1px solid red;
|
|
|
|
padding: 1rem;
|
|
|
|
justify-content: space-between;
|
2023-02-27 13:15:43 +01:00
|
|
|
}
|
|
|
|
|
2023-03-05 02:06:45 +01:00
|
|
|
.content {
|
|
|
|
border: 1px solid green;
|
|
|
|
padding: 2rem 5rem;
|
|
|
|
}
|
2023-02-27 13:15:43 +01:00
|
|
|
|
2023-03-05 02:06:45 +01:00
|
|
|
footer {
|
|
|
|
display: flex;
|
2023-03-05 14:35:00 +01:00
|
|
|
width: 100vw;
|
2023-03-05 02:06:45 +01:00
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
align-self: flex-end;
|
2023-03-05 14:35:00 +01:00
|
|
|
border: 1px solid cyan;
|
|
|
|
margin-top: auto;
|
2023-03-05 02:06:45 +01:00
|
|
|
}
|