InfiniteWebsite/src/static/style.css

73 lines
1.0 KiB
CSS

html {
background: white;
}
body {
overflow-x: hidden;
margin: 0;
height: 100%;
padding-bottom: 0px;
}
header {
position: fixed;
top: 0;
left: 0;
width: 100%;
margin: 0;
height: 3em;
border-color: black;
border-bottom: solid 5px;
z-index: 1000;
overflow: hidden;
background: black;
}
header a {
padding: 10px 10px;
float: left;
color: white;
text-decoration: none;
transition-duration: 500ms;
transition-property: text-decoration;
}
header a:hover {
text-decoration: underline;
transition-duration: 500ms;
transition-property: text-decoration;
}
header p {
float: right;
padding: 10px 10px;
margin: 0;
color: white;
}
.content {
margin-top: 3em;
padding: 1em;
margin-bottom: 3.5em;
}
footer {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
margin: 0;
height: 3em;
background: black;
border-color: black;
border-top: solid 5px;
color: white;
}
.white-link {
color: white;
}