forked from Kenshin/simpread
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoption.css
More file actions
153 lines (112 loc) · 2.74 KB
/
option.css
File metadata and controls
153 lines (112 loc) · 2.74 KB
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
146
147
148
149
150
151
152
153
/**
* Option: Focus/Read mode
*/
sr-opt-focus,
sr-opt-read {
display: -webkit-flex;
flex-direction:column;
width: 100%;
/*height: 100%;*/
}
sr-opt-gp {
display: -webkit-flex;
position: relative;
flex-flow:row nowrap;
justify-content:flex-start;
width: 100%;
margin-bottom: 25px;
font-size: 15px;
}
sr-opt-gp sr-opt-label {
display: block;
position: absolute;
margin: -8px 0 0 0;
font-size: 14px;
font-weight: bold;
color: rgba(0, 137, 123, .8);
user-select: none;
pointer-events: none;
transform: scale(0.75) translate( 0px, -8px );
transform-origin: left top 0px;
}
sr-opt-themes {
display: -webkit-flex;
flex-flow:row nowrap;
justify-content:space-between;
width: 100%;
/*height: 100%;*/
margin: 8px 0 17px;
padding: 0;
}
sr-opt-theme {
width: 40px;
height: 20px;
cursor: pointer;
list-style: none;
border-radius: 3px;
border: 1px solid #212121;
box-sizing: border-box;
opacity: 1;
transition: all 500ms opacity 1s cubic-bezier(0.23, 1, 0.32, 1) 0ms;
}
sr-opt-theme:hover {
opacity: .2;
box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14),0 1px 5px 0 rgba(0,0,0,0.12),0 3px 1px -2px rgba(0,0,0,0.2);
}
sr-opt-theme:not(:first-child) {
margin-left: 5px;
}
sr-opt-theme[sr-type="active"] {
box-shadow: 0 3px 3px 0 rgba(0,0,0,0.14),0 2px 20px 0 rgba(0,0,0,0.12),0 3px 1px -2px rgba(0,0,0,0.7);
}
/*
opacity {
margin: 8px 0 0 0;
width: 100%;
height: 37px;
}
opacity input[type=range] {
width: 100%;
margin: 6px 0;
padding: 0;
border: none;
background-color: transparent;
-webkit-appearance: none;
}
opacity input[type=range]:focus {
outline: none;
}
opacity input[type=range]::-webkit-slider-runnable-track {
width: 100%;
height: 1px;
background: #9e9e9e;
box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.5), 0px 0px 0px rgba(13, 13, 13, 0.5);
border-radius: 1.3px;
transition: all 0.3s;
cursor: pointer;
}
opacity input[type=range]::-webkit-slider-runnable-track:hover {
background: #00897B;
}
opacity input[type=range]::-webkit-slider-thumb {
height: 20px;
width: 20px;
margin-top: -9px;
background: rgba(0, 137, 123, 1);
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0), 0px 0px 1px rgba(13, 13, 13, 0);
border: 1px solid rgba(0, 0, 0, 0);
border-radius: 50px;
cursor: pointer;
-webkit-appearance: none;
transition: all .5s ease-in-out .1s;
}
opacity input[type=range]:focus::-webkit-slider-thumb {
background: #00897B;
}
opacity input[type=range]:focus::-webkit-slider-thumb:hover {
background: #00695C;
}
opacity input[type=range]:focus::-webkit-slider-runnable-track {
background: #00897B;
}
*/