55 lines
917 B
CSS
55 lines
917 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;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
#navbar {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-end;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
#navbar #element {
|
|
font-family: 'Roboto', sans-serif;
|
|
margin-right: 10px;
|
|
background-color: lightgray;
|
|
border-radius: 5px;
|
|
padding: 5px 10px 5px 10px;
|
|
}
|
|
|
|
#help-div {
|
|
z-index: 10;
|
|
position: fixed;
|
|
bottom: -4px;
|
|
right: 10px;
|
|
}
|
|
|
|
#help {
|
|
margin-bottom: 10px;
|
|
background-color: aqua;
|
|
border-radius: 100%;
|
|
width: 60px;
|
|
height: 60px;
|
|
text-align: center;
|
|
}
|
|
|
|
#help .material-symbols-outlined {
|
|
font-size: 40px;
|
|
}
|