-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
57 lines (49 loc) · 914 Bytes
/
style.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
* {
font-family: system-ui, sans-serif;
}
body {
padding: 30px 20px;
background-color: #d7d7d7;
overflow-x: hidden;
}
body.dark {
background-color: #000;
user-select: none;
cursor: none;
}
body a {
color: black;
}
#content {
max-width: 768px;
margin: auto;
}
header {
display: flex;
justify-content: space-between;
margin-bottom: 30px;
}
header h1 {
margin: 0;
}
button#toggle {
max-height: 50px;
background-color: transparent;
border: 2px solid black;
border-radius: 5px;
padding: 10px 30px;
cursor: pointer;
color: black;
}
body.dark #cursor {
width: 150px;
height: 150px;
background-color: white;
position: absolute;
left: -40px;
top: -40px;
z-index: -10;
border-radius: 50%;
box-shadow: 0 0 30px 40px #fff;
border: none;
}