-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
93 lines (81 loc) · 1.39 KB
/
main.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
.section-wrapper {
display: block;
margin-top: 2rem;
}
.section,
div.editor-option {
display: block;
}
.section {
width: 50%;
}
.group {
margin-bottom: 2rem;
}
.normal-wrapper {
display: flex;
width: 100%;
/* justify-content: center; */
justify-content: flex-start;
padding: 20px;
}
.fusionexport-dashboard-dl-btn {
color: #000;
display: inline-block;
margin-top: 10px;
}
.fusionexport-dashboard-dl-btn button {
min-width: 100px;
transition: 'all 0.5s';
}
.switch-group {
display: inline-block;
line-height: 2;
}
.toggle-switch {
position: relative;
display: inline-block;
width: 50px;
height: 28px;
margin: 0px 10px;
}
.switch-label {
/* padding: 0 10px; */
}
.toggle-switch input {
width: 0px;
height: 0px;
visibility: hidden;
}
.toggle-switch .slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
transition: 0.4s;
border-radius: 30px;
}
.toggle-switch .slider:before {
position: absolute;
content: '';
height: 18px;
width: 18px;
top:5px;
left: 6px;
bottom: 6px;
background-color: #fff;
transition: 0.4s;
border-radius: 10px;
}
.toggle-switch input:checked + .slider {
background-color: #2196f3;
}
.toggle-switch input:focus + .slider {
box-shadow: #2196f3;
}
.toggle-switch input:checked + .slider::before {
transform: translateX(20px);
}