Added placeholder files

This commit is contained in:
2023-03-15 15:12:35 +01:00
parent 09409dc698
commit 21b535d8ec
5 changed files with 132 additions and 3 deletions

View File

@@ -0,0 +1,42 @@
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200&display=swap');
body {
font-family: "Nunito", sans-serif;
background-color: #FFFFFF;
margin: 0px;
}
h1, h2 {
text-align: center;
}
h2::before {
background: url('/assets/images/sygnet_color.svg') no-repeat;
display: inline-block;
}
#header {
height: 80px;
width: 100%;
display: flex;
align-items: center;
background-color: #FFFFFF;
position: fixed;
top: 0;
left: 0;
}
#logo {
width: 250px;
margin: 0px 20px;
}
#content {
width: 1024px;
margin: auto;
text-align: justify;
background-color: #FFFFFF;
padding: 20px 20px;
border-radius: 15px;
margin-top: 100px;
}