2022-02-10 19:37:52 +01:00
|
|
|
body {
|
|
|
|
font-family: 'Verdana', sans-serif;
|
2022-02-10 22:37:51 +01:00
|
|
|
margin:0;
|
|
|
|
|
2022-02-10 19:37:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: #2a99b6;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
color: #33bbdf;
|
|
|
|
}
|
|
|
|
|
2022-02-10 22:37:51 +01:00
|
|
|
|
|
|
|
header {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row-reverse wrap;
|
|
|
|
|
|
|
|
height:auto;
|
|
|
|
width:100%;
|
|
|
|
background: transparent;
|
2022-02-10 19:37:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
header h1 {
|
2022-02-10 22:37:51 +01:00
|
|
|
flex: 1;
|
|
|
|
background: #5522ee;
|
|
|
|
color: #4010b0;
|
2022-02-10 19:37:52 +01:00
|
|
|
margin: 0;
|
|
|
|
font-weight: normal;
|
|
|
|
font-size: 42px;
|
|
|
|
}
|
|
|
|
|
2022-02-10 22:37:51 +01:00
|
|
|
header nav {
|
|
|
|
background:#4010b0;
|
|
|
|
color: #5522ee;
|
|
|
|
flex: 3;
|
|
|
|
}
|
|
|
|
|
2022-02-10 19:37:52 +01:00
|
|
|
header nav ul {
|
2022-02-10 22:37:51 +01:00
|
|
|
display: flex;
|
|
|
|
flex-flow: row wrap;
|
|
|
|
justify-content: space-around;
|
|
|
|
width:100%;
|
2022-02-10 19:37:52 +01:00
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
header nav ul li {
|
2022-02-10 22:37:51 +01:00
|
|
|
display: block;
|
|
|
|
margin:0;
|
2022-02-10 19:37:52 +01:00
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2022-02-10 22:37:51 +01:00
|
|
|
header nav ul li a {
|
|
|
|
color: #5522ee;
|
|
|
|
text-decoration: none;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
header nav ul li a:hover {
|
|
|
|
color: #7744ff;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#flex {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
main {
|
|
|
|
flex: 3;
|
|
|
|
background: #4010b0;
|
|
|
|
color: #5522ee;
|
|
|
|
}
|
|
|
|
|
|
|
|
aside {
|
|
|
|
flex: 1;
|
|
|
|
background: #5522ee;
|
|
|
|
color: #4010b0;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
|
|
|
width:100%;
|
|
|
|
height:auto;
|
2022-02-10 19:37:52 +01:00
|
|
|
}
|