This repository has been archived by the owner on May 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
130 lines (106 loc) · 1.76 KB
/
style.css
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/*
* ©Xiler
* This is the official CSS for the temporary website.
*/
/*
* General site style
*/
body {
position: relative;
margin: 0;
padding: 0;
background-color: #46494c;
width: 100vw;
height: 100vh;
font-family: "Roboto", sans-serif;
}
.wrapper {
position: relative;
width: inherit;
height: inherit;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
color: #dcdcdd;
max-width: 80%;
margin: 0 auto;
}
.wrapper h1 {
font-size: 3rem;
}
.wrapper h2 {
font-size: 2rem;
margin-bottom: 0;
}
.wrapper ul {
margin: 10px 0 0 0;
padding: 0;
font-size: 1.75rem;
}
.platforms {
list-style: none;
}
.platforms li {
font-size: inherit;
display: flex;
justify-content: center;
align-items: flex-end;
}
.platforms li a {
width: fit-content;
display: block;
color: inherit;
text-decoration: none;
font-size: inherit;
padding-bottom: 2px;
}
.platforms li a:hover {
border-bottom: 2px solid #c5c3c6;
border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
padding-bottom: 0px;
}
.recommended {
margin: 0 0 0.4rem 10px;
font-size: 50%;
opacity: 0.9;
}
/*
* Site decoration
*/
@keyframes rotation-right {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.decorations {
position: absolute;
width: inherit;
height: inherit;
display: flex;
align-items: center;
justify-content: space-between;
top: 0;
z-index: -1;
overflow: hidden;
}
.decorations img {
position: absolute;
width: 50vw;
height: 50vw;
}
.left {
top: -15vw;
left: -15vw;
animation: rotation-right 60s linear infinite;
}
.right {
right: -15vw;
bottom: -15vw;
animation: rotation-right 60s linear infinite;
}