-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgeneral.css
executable file
·128 lines (111 loc) · 2.11 KB
/
general.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
@font-face {
font-family: 'Iosevka';
src: url('assets/Iosevka.ttf');
}
body {
font-family: 'Iosevka', monospace;
font-size: 20px;
background-color: #0F0F12;
background-repeat: repeat;
width: 670px;
height: 320px;
position: absolute;
top: 0;
bottom: 100px;
left: 0;
right: 0;
margin: auto;
}
h1 {
font-weight: normal;
color: #FEFFFA;
text-align: center;
}
.flair { color: #0972D6; }
.main {
display: inline-block;
border: 5px solid #18181D;
position: relative;
top: -100px;
width: 770px;
height: 600px;
left: -200px;
margin: auto;
background-color: #18181D;
text-align: center;
}
.image-wrapper {
border: 5px solid #18181D;
position: absolute;
top: -5px;
width: 300px;
height: 600px;
left: 770px;
background-color: #18181D;
background: center / cover no-repeat;
}
.next {
cursor: pointer;
position: absolute;
top: 575px;
right: 10px;
padding: 5px;
color: white;
font-weight: bold;
font-size: 30px;
border-radius: 50%;
transition: color 0.6s ease; /* Simplified transition property */
user-select: none;
}
img {
width: 300px;
height: 600px;
}
.fade { animation: fade 1.5s; }
@keyframes fade {
from { opacity: 0.4; }
to { opacity: 1; }
}
.codes {
color: #FFFFFF;
font-family: 'Iosevka', monospace;
font-size: 18px;
position: absolute;
top: 565px;
left: 12px;
}
li { margin: 10px 0; }
nav {
display: inline-block;
color: #BFBFBF;
font-size: 20px;
text-align: center;
margin: 0 auto;
}
ul {
display: table-cell;
text-align: center;
height: 100%;
padding: 10px 25px;
list-style-type: none;
border-right: 1px solid #232328;
transition: color 0.8s;
cursor: default;
}
ul:last-of-type { border-right: none; }
ul:hover { color: #FFFFFF; }
ul > li:first-of-type { padding-top: 5px; }
ul > li > a {
text-decoration: none;
color: #9b9b9b;
transition: color 0.8s;
}
ul.green > li > a:hover { color: #4FAE0F; }
ul.blue > li > a:hover { color: #0972D6; }
ul.red > li > a:hover { color: #ed3434; }
ul.yellow > li > a:hover { color: #edd934; }
.nav-title {
font-size: 22px;
font-weight: bold;
cursor: default;
}