-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
140 lines (126 loc) · 5.63 KB
/
styles.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
/* Light Theme (Default) */
.light-theme .w3-theme-l5 {color:#000 !important; background-color:#f7fbff !important}
.light-theme .w3-theme-l4 {color:#000 !important; background-color:#e1f0ff !important}
.light-theme .w3-theme-l3 {color:#000 !important; background-color:#cce5ff !important}
.light-theme .w3-theme-l2 {color:#000 !important; background-color:#b8dbff !important}
.light-theme .w3-theme-l1 {color:#000 !important; background-color:#a4d0ff !important}
.light-theme .w3-theme-d1 {color:#000 !important; background-color:#8cc5ff !important}
.light-theme .w3-theme-d2 {color:#000 !important; background-color:#75baff !important}
.light-theme .w3-theme-d3 {color:#000 !important; background-color:#5eafff !important}
.light-theme .w3-theme-d4 {color:#fff !important; background-color:#47a4ff !important}
.light-theme .w3-theme-d5 {color:#fff !important; background-color:#3099ff !important}
.light-theme .w3-theme-cd1 {color:#000 !important; background-color:#999999 !important}
.light-theme .w3-theme-cd2 {color:#000 !important; background-color:#C2C2C2 !important}
.light-theme .w3-theme-cl1 {color:#000 !important; background-color:#f7fbff !important}
.light-theme .w3-theme-light {color:#000 !important; background-color:#f7fbff !important}
.light-theme .w3-theme-dark {color:#000 !important; background-color:#3099ff !important}
.light-theme .w3-theme-action {color:#fff !important; background-color:#3099ff !important}
.light-theme .w3-theme {color:#000 !important; background-color:#0078d4 !important}
.light-theme .w3-text-theme {color:#0078d4 !important}
.light-theme .w3-text-theme2 {color:#E6AE10 !important}
.light-theme .w3-border-theme {border-color:#0078d4 !important}
.light-theme .w3-hover-theme:hover {color:#000 !important; background-color:#0078d4 !important}
.light-theme .w3-hover-text-theme:hover {color:#0078d4 !important}
.light-theme .w3-hover-border-theme:hover {border-color:#0078d4 !important}
.light-theme .w3-theme-main,.w3-hover-theme-main:hover{color:#000!important;background-color:#f7fbff!important}
/* Dark Theme */
.dark-theme .w3-theme-l5 {color:#000 !important; background-color:#edf7ff !important}
.dark-theme .w3-theme-l4 {color:#000 !important; background-color:#c4e5ff !important}
.dark-theme .w3-theme-l3 {color:#000 !important; background-color:#89ccff !important}
.dark-theme .w3-theme-l2 {color:#fff !important; background-color:#4eb2ff !important}
.dark-theme .w3-theme-l1 {color:#fff !important; background-color:#1298ff !important}
.dark-theme .w3-theme-d1 {color:#fff !important; background-color:#006dc1 !important}
.dark-theme .w3-theme-d2 {color:#fff !important; background-color:#0061ab !important}
.dark-theme .w3-theme-d3 {color:#fff !important; background-color:#005596 !important}
.dark-theme .w3-theme-d4 {color:#fff !important; background-color:#004981 !important}
.dark-theme .w3-theme-d5 {color:#fff !important; background-color:#003d6b !important}
.dark-theme .w3-theme-cd1 {color:#fff !important; background-color:#181818 !important}
.dark-theme .w3-theme-cd2 {color:#fff !important; background-color:#1F1F1F !important}
.dark-theme .w3-theme-cl1 {color:#000 !important; background-color:#edf7ff !important}
.dark-theme .w3-theme-light {color:#000 !important; background-color:#edf7ff !important}
.dark-theme .w3-theme-dark {color:#fff !important; background-color:#003d6b !important}
.dark-theme .w3-theme-action {color:#fff !important; background-color:#003d6b !important}
.dark-theme .w3-theme {color:#fff !important; background-color:#0078d4 !important}
.dark-theme .w3-text-theme {color:#0078d4 !important}
.dark-theme .w3-text-theme2 {color:#E6AE10 !important}
.dark-theme .w3-border-theme {border-color:#0078d4 !important}
.dark-theme .w3-hover-theme:hover {color:#fff !important; background-color:#0078d4 !important}
.dark-theme .w3-hover-text-theme:hover {color:#0078d4 !important}
.dark-theme .w3-hover-border-theme:hover {border-color:#0078d4 !important}
.dark-theme .w3-theme-main,.w3-hover-theme-main:hover{color:#fff!important;background-color:#000!important}
/* Light theme styles */
.light-theme {
background-color: #ffffff;
color: #000000;
}
/* Dark theme styles */
.dark-theme {
background-color: #000000;
color: #ffffff;
}
/* The switch - the box around the slider */
.switch {
position: relative;
display: inline-block;
width: 40px; /* Smaller width */
height: 20px; /* Smaller height */
vertical-align: middle; /* Align with text */
}
/* Hide default HTML checkbox */
.switch input {
opacity: 0;
width: 0;
height: 0;
}
/* Slider */
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
transition: .4s;
border-radius: 20px; /* Adjusted for smaller size */
}
/* Slider before */
.slider:before {
position: absolute;
content: "";
height: 14px; /* Smaller size */
width: 14px; /* Smaller size */
border-radius: 50%;
left: 3px; /* Adjusted position */
bottom: 3px; /* Adjusted position */
background-color: white;
transition: .4s;
}
/* Checked slider */
input:checked + .slider {
background-color: #2196F3;
}
/* Move the slider */
input:checked + .slider:before {
transform: translateX(20px); /* Adjusted for smaller size */
}
/* Rounded sliders */
.slider.round {
border-radius: 20px; /* Adjusted for smaller size */
}
.slider.round:before {
border-radius: 50%;
}
.theme-toggle-container {
display: flex;
align-items: center;
padding: 0; /* Remove any padding */
}
.theme-toggle-container .switch {
margin: 0; /* Remove any margin */
vertical-align: middle; /* Align the switch vertically */
}
.theme-toggle-container .w3-padding-small {
padding-left: 10px; /* Adjust spacing between switch and label */
padding-right: 10px;
}