-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgeneral.css
executable file
·145 lines (122 loc) · 1.81 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
@font-face {
font-family: 'Iosevka';
src: url('assets/Iosevka.ttf');
}
body {
font-family: 'Iosevka', monospace;
font-size: 20px;
background-color: #0F0F12;
width: 670px;
height: 320px;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 100px;
margin: auto;
overflow-y: hidden;
}
h1 {
font-weight: normal;
color: #FEFFFA;
text-align: center;
}
#dots,
.main {
text-align: center;
}
.flair {
color: #0972D6;
}
.main {
display: inline-block;
border: 5px solid #18181D;
position: relative;
bottom: 30%;
width: 770px;
height: 600px;
right: 31%;
margin: auto;
background-color: #18181D;
}
.image-wrapper {
border: 5px solid #18181D;
position: absolute;
top: -5px;
left: 770px;
width: 300px;
height: 600px;
background: #18181D center / cover no-repeat;
}
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;
}
nav {
display: inline-block;
color: #BFBFBF;
font-size: 20px;
margin: 0 auto;
}
ul {
display: table-cell;
text-align: center;
padding: 10px 25px;
list-style: none;
border-right: 1px solid #232328;
transition: 0.8s;
cursor: default;
}
ul:last-of-type {
border-right: none;
}
ul:hover {
color: #FFFFFF;
}
li {
margin: 10px 0;
}
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;
}