blob: 2bf3b77c0226c9d1cb181defad415526f0c6a171 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
@font-face {
font-family: 'LinLibertine';
src: url('fonts/LinLibertine.ttf') format('truetype');
}
body {
display: flex;
justify-content: center;
background-color: lightgray;
font-family: 'LinLibertine', serif;
font-size: 1.2rem;
margin: 0;
}
#container {
max-width: 800px;
background-color: white;
padding: 10px;
}
|