Files: 1c61b53a1012292e58ac4a7b2d2f450506a99711 / styles / main.css
958 bytesRaw
1 | @font-face{ |
2 | font-family: interval; |
3 | src: url('../Interval.otf') |
4 | } |
5 | |
6 | body, html{ |
7 | margin: 0; |
8 | padding: 0; |
9 | box-sizing: border-box; |
10 | background-color: var(--primary-bg); |
11 | min-height: 100vh; |
12 | width: 100%; |
13 | display: flex; |
14 | flex-direction: column; |
15 | justify-content: center; |
16 | align-items: center; |
17 | font-family: interval; |
18 | } |
19 | |
20 | body + div{ |
21 | height: 100%; |
22 | width: 100%; |
23 | } |
24 | |
25 | .wrapper{ |
26 | display: flex; |
27 | flex-direction: column; |
28 | justify-content: center; |
29 | align-items: center; |
30 | height: 100%; |
31 | width: 100%; |
32 | } |
33 | |
34 | a{ |
35 | color: var(--link); |
36 | } |
37 | |
38 | .title{ |
39 | position: fixed; |
40 | top: 0; |
41 | left: 50; |
42 | } |
43 | |
44 | .paper{ |
45 | padding: 1em; |
46 | background-color: var(--paper-bg); |
47 | height: 20%; |
48 | width: 50%; |
49 | display: flex; |
50 | flex-direction: column; |
51 | justify-content: center; |
52 | align-items: center; |
53 | text-align: center; |
54 | color: var(--paper-text); |
55 | -moz-box-shadow: 3px 6px #999; |
56 | -webkit-box-shadow: 4px 6px 1px #999; |
57 | } |
58 | |
59 | .paper h1{ |
60 | line-height: 0.5em; |
61 | margin-top: 0px; |
62 | } |
63 |
Built with git-ssb-web