go-http-server/static/css/styles.css
2022-07-04 10:02:06 +02:00

53 lines
No EOL
815 B
CSS

#content {
flex: 1 0 auto;
}
#footer {
display: flex;
flex-direction: row;
justify-content: center;
flex-shrink: 0;
padding: 8px;
background-color: #4e4e4e;
font-weight: 600;
align-items: center;
transition: background-color 0.5s;
border-top: 1px solid #6e6e6e;
}
#footer:hover {
background-color: #3e3e3e;
cursor: pointer;
}
#footer img {
margin-left: 8px;
margin-right: 8px;
}
html,
body {
height: 100%;
}
body {
font-family: 'Fira Code', monospace !important;
color: #e1e1e1;
background-color: #1e1e1e;
margin: 0;
padding: 0;
text-align: center;
display: flex;
flex-direction: column;
}
h1 {
font-weight: 900;
font-size: 5rem;
color: #f1f1f1;
}
a {
text-decoration: none;
color: #f1f1f1;
}