-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (48 loc) · 955 Bytes
/
Copy pathstyle.css
File metadata and controls
50 lines (48 loc) · 955 Bytes
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
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap");
* {
box-sizing: border-box;
}
body {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
font-family: "Poppins", sans-serif;
margin: 0;
min-height: 100vh;
text-align: center;
padding: 5rem;
transition: background 0.3s linear, color 0.3s linear;
}
body.dark{
background-color: #1f1f1f;
color: #fff;
}
.toggle-container{
position: fixed;
top: 10px;
right: 10px;
}
.wrapper{
width: 800px;
border: 1px solid #202020;
}
label{
background-color: rebeccapurple;
border-radius: 50%;
display: inline-block;
width: 50px;
height: 50px;
cursor: pointer;
user-select: none;
transition: background 0.3s linear;
}
body.dark label{
background-color: #fff;
}
body.dark .wrapper{
border: 1px solid #fff;
}
input{
visibility: hidden;
}