53 lines
1006 B
CSS
53 lines
1006 B
CSS
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: #EAE2B7; }
|
|
|
|
a {
|
|
color: #003049;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
letter-spacing: 1px; }
|
|
|
|
.greeting {
|
|
color: #F77F00;
|
|
font-size: 30px;
|
|
font-weight: 900;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 50vh;
|
|
background-image: url("https://i1.wp.com/sirus.be/sirus_afbeeldingen/2020/04/Smartcities.png?fit=2560%2C1594&ssl=1");
|
|
background-position: center center;
|
|
background-size: cover;
|
|
background-clip: border-box; }
|
|
|
|
.header {
|
|
background-color: #F77F00;
|
|
width: 100%;
|
|
height: 50px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end; }
|
|
|
|
ul {
|
|
display: flex;
|
|
flex-direction: row;
|
|
font-size: 20px;
|
|
list-style: none; }
|
|
ul li {
|
|
padding-right: 30px; }
|
|
|
|
ol {
|
|
display: flex;
|
|
flex-direction: column;
|
|
list-style: georgian; }
|
|
|
|
.content {
|
|
display: flex;
|
|
flex-direction: row; }
|
|
|
|
/*# sourceMappingURL=index.css.map */
|