32 lines
579 B
CSS
32 lines
579 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
|
|
|
|
html, body {
|
|
height: 100%;
|
|
}
|
|
|
|
h1 {
|
|
font-family: 'Roboto', sans-serif;
|
|
margin: 0;
|
|
}
|
|
|
|
#header {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: flex-end;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
#navbar {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
#navbar #element {
|
|
font-family: 'Roboto', sans-serif;
|
|
margin-right: 10px;
|
|
background-color: lightgray;
|
|
border-radius: 5px;
|
|
padding: 5px 10px 5px 10px;
|
|
} |