-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdesigns.css
108 lines (95 loc) · 1.83 KB
/
designs.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
@font-face
{
font-family : customfont;
src: url(etc/BM_hanna.ttf);
}
body
{
font-family : customfont;
scroll-behavior : smooth;
}
.github_link
{
position : fixed;
color : #635d67;
font-weight : bold;
white-space: nowrap;
font-size : var(--text_size);
top : 94%;
left : var(--skin_change_pos);
z-index : 9999;
padding : 3px;
transition : background-color 0.25s, opacity 0.5s;
padding-left : 15px;
padding-right : 15px;
}
.background
{
background : #00183b;
overflow-x: hidden;
overflow-y: hidden;
height : var(--page_height);
z-index : 0;
}
.air_res
{
position : fixed;
color : #635d67;
font-weight : bold;
white-space: nowrap;
font-size : var(--text_size);
transition : color 2s, opacity 0.5s;
top : 96%;
z-index : 9999;
padding: 1.5px;
}
.air_res_bar
{
-webkit-appearance : none;
position : fixed;
background : #ffffff;
font-weight : bold;
white-space: nowrap;
font-size : var(--text_size);
transition : color 2s, opacity 0.5s;
top : 98%;
z-index : 9999;
padding : 2px;
height : 3px;
width : 150px;
border-radius : 12px;
}
.air_res_bar:hover
{
transition : opacity 0.5s;
}
.air_res_bar::-webkit-slider-thumb
{
-webkit-appearance: none;
appearance: none;
width: 12px;
height: 12px;
background: #00aaa9;
cursor: pointer;
border-radius : 12px;
transition : opacity 0.5s;
}
.air_res_bar::-moz-range-thumb
{
width: 12px;
height: 12px;
background: #00aaa9;
cursor: pointer;
border-radius : 12px;
transition : opacity 0.5s;
}
.air_res_bar::-moz-range-thumb
{
-webkit-appearance: none;
appearance: none;
background : #00aaa9;
width : 12px;
height : 12px;
cursor: pointer;
transition : opacity 0.5s;
}