-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
50 lines (45 loc) · 808 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
body {
background-color: #000000;
color: #ffffff;
}
* {
cursor: none;
font-family: "Montserrat", sans-serif;
}
html,
body {
height: 100%;
}
.cursor {
position: fixed;
top: 10px;
left: 6px;
width: 50px;
height: 50px;
background-image: url(/cursor/cursor.png);
background-size: 100%;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
user-select: none;
pointer-events: none;
z-index: 10001;
}
.follower {
position: fixed;
top: 10px;
left: 6px;
width: 50px;
height: 50px;
background-image: url(/cursor/iggy.png);
background-size: 100%;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
user-select: none;
pointer-events: none;
z-index: 10000;
}
p {
color: #555;
}