Plankton_Detector/PlanktonDetector/static/DetectionApp/css/base.css

46 lines
871 B
CSS
Raw Normal View History

2023-12-06 18:12:31 +01:00
body, html{
height:100%;
margin: 0px 0px 0px 0px;
display:flex;
justify-content: center;
flex-direction: column;
font-family:'Inter', sans-serif;
}
.top-menu a{
text-decoration: none;
margin-right: 2rem;
color:black;
}
.top-menu{
display: flex;
flex-direction: row;
justify-content:flex-end;
align-items: center;
background-color:lightgray;
margin-bottom:5px;
2023-12-19 17:33:46 +01:00
height: 45px;
2023-12-06 18:12:31 +01:00
border: grey solid;
border-width: 0px 2px 2px 2px;
2023-12-19 17:33:46 +01:00
transition: top 0.3s;
2023-12-06 18:12:31 +01:00
}
.footer{
display:flex;
2023-12-13 02:11:29 +01:00
position:fixed;
bottom: 0;
right: 0;
left:0;
2023-12-06 18:12:31 +01:00
flex-direction: row;
justify-content: center;
align-items: center;
margin-top: 5px;
background-color: lightgray;
border: grey solid;
border-width: 2px 2px 0px 2px;
justify-content: space-evenly;
align-items: center;
}