-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
145 lines (145 loc) · 2.64 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
body {
margin: 0;
font-family: "Roboto", sans-serif;
background: #0D47A1;
color: white;
font-size: 30px;
animation: rainbows 14s infinite;
}
input {
border: none !important;
border-radius: 5px;
background: rgba(255,255,255,0.5);
color: #333;
font-size: inherit;
font-family: inherit;
padding: 5px;
margin: 5px;
box-shadow: 0 1px 1px rgba(0,0,0,0.3);
width: 60px;
min-width: 40px;
}
ul {
margin: 0;
padding: 5px 15px 250px 15px;
max-width: calc(100% - 170px);
}
ul li {
display: inline-block;
margin-right: 5px;
}
@keyframes rainbows {
0% {background:#2196F3;}
14% {background:#00BCD4;}
29% {background:#8BC34A;}
43% {background:#FFC107;}
57% {background:#FF5722;}
71% {background:#E91E63;}
86% {background:#673AB7;}
100% {background:#2196F3;}
}
.how {
display: none;
position: absolute;
top: 50px;
width: 200px;
background: white;
padding: 5px;
box-shadow: 0 0 3px rgba(0,0,0,0.3);
border-radius: 5px;
color: #666;
font-size: 20px;
word-break: break-all;
}
.how:before {
content: "";
width: 0;
height: 0;
border-left: 15px solid transparent;
border-right: 15px solid transparent;
border-bottom: 15px solid transparent;
position: absolute;
top: -15px;
}
li:hover, li.hover {
background: rgba(0,0,0,0.3);
position: relative;
}
li:hover .how, li.hover .how {
display: inline;
}
li:hover .how:before, li.hover .how:before {
border-bottom-color: white;
}
sup {
vertical-align: super;
font-size: 10px;
}
b {
font-weight: bold;
}
#resizer {
position: absolute;
left: -1000%;
}
::selection {
background: rgba(0, 188, 212, 0.4);
}
#btn {
border-radius: 5px;
background: rgba(255,255,255,0.5);
display: inline;
color: #333;
padding: 5px;
margin: 12px;
box-shadow: 0 1px 1px rgba(0,0,0,0.3);
transition: box-shadow .2s;
cursor: pointer;
}
#btn:hover {
box-shadow: 0 1px 5px rgba(0,0,0,0.3);
}
#btn:active {
box-shadow: inset 0 1px 1px rgba(0,0,0,0.3);
}
#btn::selection {
background: none;
}
#footer {
font-size: 15px;
position: fixed;
bottom: 0;
width: 100%;
background: rgba(0,0,0,0.3);
}
#footer a {
text-decoration: none;
color: #333;
padding-bottom: 1px;
}
#footer a:hover {
border-bottom: 1px solid #333;
padding-bottom: 0;
}
#footer a:active {
color: #E0E0E0;
border-bottom-color: #E0E0E0;
}
::-webkit-scrollbar {
background: none;
}
::-webkit-scrollbar-track {
animation: rainbows 14s infinite;
}
::-webkit-scrollbar:vertical {
width: 5px;
}
::-webkit-scrollbar:horizontal {
display: none;
}
::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.3);
}
::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.5);
}