-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathc-style.css
More file actions
66 lines (66 loc) · 1.24 KB
/
c-style.css
File metadata and controls
66 lines (66 loc) · 1.24 KB
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
body{
padding: 0;
margin: 0;
box-sizing: border-box;
cursor: none;
}
header{
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 3px 3px rgb(0, 0, 0, 0.35);
}
h3{
font-size: 2.2rem;
}
h5{
font-size: 1.4rem;
}
ul{
display: flex;
align-items: center;
width: 40%;
}
.items{
list-style: none;
justify-content: space-between;
flex: 1;
}
li{
text-decoration: none;
font-size: 1.3rem;
cursor: none;
margin: 0px 66px;
padding: 2px 2px;
z-index: 10;
}
.content img{
width: 800px;
position: absolute;
top: 150px;
left: 20px;
z-index: -5;
/* filter: blur(8px);
-webkit-filter: blur(8px); */
}
.cursor{
border: 2px solid black;
width: 18px;
height: 18px;
border-radius: 50%;
position: absolute;
z-index: 5;
/* transform: translate(-40%, -260%); */
pointer-events: none;
/* transform-origin: 100% 100%; */
transition: all 0.5s ease;
transition-property: background-color, transform;
backdrop-filter: blur(20px);
}
.grow{
transform: translate(-50%, -260%) scale(3);
background-color: black;
}
*{
cursor: none;
}