refonte/themes/afpy/static/css/website.css

46 lines
555 B
CSS

/* Fonts */
@font-face{
font-family: Atkinson;
src: url(../webfonts/Atkinson-Hyperlegible-Regular-102.ttf);
}
/* Variables */
:root {
--black: #0e0e0e;
--blue: #327bd6;
--dark-green: #32ada9;
--green: #ebff32;
--orange: #ff6f32;
--purple: #84326b;
--white: #ffffff;
}
/* Common */
html {
background: var(--white);
color: var(--black);
font-family: sans-serif;
font-size: 14pt;
line-height: 1.5;
}
body {
margin: 0;
}
/* Header */
header {
height: 4em;
left: 0;
position: fixed;
top: 0;
width: 100vw;
}