-
Notifications
You must be signed in to change notification settings - Fork 0
/
client-side.css
63 lines (63 loc) · 1.25 KB
/
client-side.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
.__let_me_read_container {
position: fixed;
z-index: 10000;
right: 20px;
bottom: 20px;
display: flex;
flex-direction: column;
align-items: center;
}
.__let_me_read_item {
display: flex;
flex-direction: column;
align-items: center;
width: 100px;
height: 60px;
margin-bottom: 5px;
}
.__let_me_read_operator {
position: relative;
flex-grow: 0;
flex-shrink: 0;
width: 40px;
height: 40px;
border-radius: 20px;
background:#F44336;
}
.__let_me_read_operator:hover {
background-color: #B71C1C;
}
.__let_me_read_operator img {
position: absolute;
top: 7px;
left: 7px;
width: 26px;
height: 26px;
}
.__let_me_read_operator.__operator_toggle {
position: relative;
width: 30px;
height: 30px;
background-color: #9E9E9E;
border-radius: 0;
margin-left: 5px;
margin-right: 5px;
}
.__let_me_read_operator.__operator_toggle:hover {
background-color: #212121;
}
.__let_me_read_operator.__operator_toggle img {
position: absolute;
top: 2px;
left: 2px;
width: 26px;
height: 26px;
}
.__let_me_read_title {
background-color: #9E9E9E;
font-size: 12px;
color: white;
padding: 2px 10px;
border-radius: 2px;
visibility: hidden;
}