-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle-light.css
95 lines (81 loc) · 1.4 KB
/
style-light.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
body {
font-family: Arial, sans-serif;
margin: 20px;
background-color: #ffffff;
color: #333333;
}
h1 {
color: #333333;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin-bottom: 10px;
padding: 10px;
background-color: #f0f0f0;
border-radius: 5px;
}
p {
color: #777777;
}
.filtered {
background-color: #ffcccc;
}
.rewritten {
background-color: #cce5ff;
}
#header {
background-color: #4CAF50;
color: #ffffff;
padding: 10px;
display: flex;
justify-content: space-between;
align-items: center;
border-radius: 10px;
}
#nav {
display: flex;
gap: 10px;
}
.switch-container {
display: flex;
align-items: center;
}
.switch-label {
cursor: pointer;
}
.switch-slider {
position: relative;
width: 40px;
height: 20px;
background-color: #ccc;
border-radius: 20px;
margin-left: 10px;
}
.switch-thumb {
position: absolute;
width: 18px;
height: 18px;
border-radius: 50%;
background-color: #fff;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
top: 50%;
transform: translateY(-50%);
transition: transform 0.3s ease;
}
#adminLink,
#githubLink,
#darkModeSwitch {
color: #ffffff;
text-decoration: none;
padding: 8px;
border-radius: 5px;
background-color: #333333;
}
#adminLink:hover,
#githubLink:hover,
#darkModeSwitch:hover {
background-color: #555555;
}