mirror of
https://github.com/lennart-k/rustical.git
synced 2025-12-14 17:12:22 +00:00
40 lines
467 B
CSS
40 lines
467 B
CSS
body {
|
|
font-family: sans-serif;
|
|
margin: 0;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
#app {
|
|
padding: 12px;
|
|
}
|
|
|
|
header {
|
|
background: #EEE;
|
|
height: 80px;
|
|
font-weight: bold;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 12px;
|
|
font-size: 2em;
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: black;
|
|
}
|
|
|
|
|
|
.logout_form {
|
|
margin-left: auto;
|
|
}
|
|
}
|
|
|
|
.login_window {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|