template/src/main/css/common.css

44 lines
671 B
CSS
Raw Normal View History

/* Variables */
:root {
--fwdekker-theme-color: #0033cc;
--fwdekker-theme-color-dark: #0029a3;
--fwdekker-theme-color-very-dark: #001f7a;
--fwdekker-theme-color-light: #003df5;
--fwdekker-theme-color-very-light: #1f57ff;
}
/* Base elements */
html, body {
height: 100%;
margin: 0;
padding: 0;
2020-05-03 18:58:08 +02:00
}
body {
color: black;
}
2020-05-03 18:02:48 +02:00
#contents {
margin-top: 5rem;
margin-bottom: 5rem;
}
2021-04-16 12:39:28 +02:00
footer {
margin-bottom: 3rem;
}
2021-04-16 12:39:28 +02:00
/* Override Milligram */
header .container {
text-align: center;
}
/* Make arrow next to dropdown visible */
select {
-webkit-appearance: menulist;
-moz-appearance: menulist;
appearance: auto;
}