Files: 514e4db9740ba4ba968e7bed35cdf34c6eb5bab8 / styles / main.css
2015 bytesRaw
1 | @font-face{ |
2 | font-family: interval; |
3 | src: url('./fonts/Interval.otf') |
4 | } |
5 | @font-face{ |
6 | font-family: sinkin; |
7 | src: url('./fonts/SinkinSans-100Thin.otf') |
8 | } |
9 | |
10 | body, html{ |
11 | margin: 0; |
12 | padding: 0; |
13 | box-sizing: border-box; |
14 | background: rgb(0,0,0); |
15 | background: linear-gradient(180deg, rgba(0,0,0,1) 2%, rgba(6,7,60,1) 64%, rgba(33,21,4,1) 100%); |
16 | min-height: 100vh; |
17 | width: 100%; |
18 | display: flex; |
19 | flex-direction: column; |
20 | justify-content: center; |
21 | align-items: center; |
22 | font-family: sinkin; |
23 | letter-spacing: 0.24em; |
24 | } |
25 | |
26 | body + div{ |
27 | height: 100%; |
28 | width: 100%; |
29 | } |
30 | |
31 | .wrapper{ |
32 | position: relative; |
33 | display: flex; |
34 | flex-direction: column; |
35 | justify-content: center; |
36 | align-items: center; |
37 | min-height: 100%; |
38 | width: 100%; |
39 | } |
40 | |
41 | a{ |
42 | color: var(--link); |
43 | } |
44 | |
45 | .title{ |
46 | position: fixed; |
47 | top: 0; |
48 | left: 50; |
49 | } |
50 | |
51 | .paper{ |
52 | display: grid; |
53 | grid-template-rows: 100px 1fr 100px; |
54 | border: 1.5px dashed #FFE4E1; |
55 | border-radius: 7px; |
56 | min-height: 40%; |
57 | height: auto; |
58 | width: 50%; |
59 | text-align: left; |
60 | color: var(--text); |
61 | } |
62 | |
63 | .paper h1{ |
64 | letter-spacing: 0.5em; |
65 | font-size: 1.5em; |
66 | width: 100%; |
67 | color: var(--title); |
68 | text-align: center; |
69 | } |
70 | |
71 | |
72 | |
73 | .paper a { |
74 | width: 100%; |
75 | text-align: center; |
76 | font-size: 1.2em; |
77 | line-height: 1.3em; |
78 | text-decoration: none; |
79 | } |
80 | |
81 | #tracklist{ |
82 | display: flex; |
83 | justify-content: center; |
84 | align-items: center; |
85 | flex-direction: column; |
86 | position: relative; |
87 | color: var(--text); |
88 | font-weight: bold; |
89 | } |
90 | |
91 | #tracklist ul{ |
92 | display: grid; |
93 | grid-template-columns: 1fr 1fr 1fr 1fr; |
94 | margin: 0; |
95 | } |
96 | |
97 | #tracklist li{ |
98 | margin: 0; |
99 | list-style-type: none; |
100 | font-size: 1.1em; |
101 | text-align: left; |
102 | line-height: 1.4em; |
103 | cursor: pointer; |
104 | } |
105 | |
106 | #text { |
107 | position: relative; |
108 | font-size: 1em; |
109 | font-weight: bold; |
110 | display: flex; |
111 | flex-direction: column; |
112 | justify-content: center; |
113 | align-items: center; |
114 | padding: 1em; |
115 | } |
116 | |
117 | |
118 | |
119 | .fade-in{ |
120 | animation: fade-in 3s; |
121 | } |
122 | |
123 | |
124 | @keyframes move-in { |
125 | 0% {width:0%} |
126 | 100% {width:100%;} |
127 | } |
128 | 0% {opacity: 0;} |
129 | 70% {opacity: 0.6;} |
130 | 100% {opacity: 1;} |
131 |
Built with git-ssb-web