blob: ca69eac5ad91472901278e7dec1da60bdbebb125 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
@font-face {
font-family: CMS;
src: url('../fonts/font-regular.ttf');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: CMS;
src: url('../fonts/font-italic.ttf');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: CMS;
src: url('../fonts/font-bold.ttf');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: CMS;
src: url('../fonts/font-bold-italic.ttf');
font-weight: bold;
font-style: italic;
}
.centered {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
width: 100%;
}
|