-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdarkmode.css
47 lines (47 loc) · 872 Bytes
/
darkmode.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
button:focus, textarea:focus, select:focus {
outline: none;
}
.lightmode-background {
background: #fff;
color: #212529;
transition: background-color .25s ease-in-out;
}
.darkmode-background {
background: #1b151f;
color: #dedad6;
transition: background-color .25s ease-in-out;
}
.lightmode-button {
background: #1b151f;
color: white;
width: 3rem;
height: 3rem;
position: fixed;
border-radius: 50%;
right: 32px;
bottom: 32px;
left: unset;
cursor: pointer;
transition: all 0.5s ease;
display: flex;
justify-content: center;
align-items: center;
border: none;
}
.darkmode-button {
background: white;
color: black;
width: 3rem;
height: 3rem;
position: fixed;
border-radius: 50%;
right: 32px;
bottom: 32px;
left: unset;
cursor: pointer;
transition: all 0.5s ease;
display: flex;
justify-content: center;
align-items: center;
border: none;
}