This repository has been archived on 2020-03-05. You can view files and clone it, but cannot push or open issues or pull requests.
gymrooster/scss/index.scss

38 lines
772 B
SCSS

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
nav {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3.5em;
color: white;
background-color: black;
a {
position: absolute;
color: white;
}
a:nth-child(1) {
padding: 1em;
}
a:nth-child(2) {
right: 0;
padding: 1em;
}
}
main {
margin-top: 3.5em;
margin-bottom: 1em;
}
footer {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background-color:black;
color:white;
text-align: center;
font-size: 12px;
padding: 2px;
}
}