-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
51 lines (48 loc) · 989 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
* {
cursor: url("./assets/neocat.png") 4 4, auto;
}
#ssi1, #ssi2, #ssi3, #ssi4 {
font-size: 2vh;
margin: 3px 0;
transition: transform 0.2s ease, background-color 0.2s ease;
background-color: rgb(199, 203, 255);
}
#ssi1:hover, #ssi2:hover, #ssi3:hover, #ssi4:hover {
cursor: url("./assets/neocat_cute.png") 4 4, auto;
background-color: rgb(0, 163, 27);
}
#ssi1:hover {
transform: translateX(5px)
}
#ssi2:hover, #ssi4:hover {
transform: scale3d(1.05, 1.05, 1.05)
}
#ssi3:hover {
transform: translateX(-5px)
}
body {
margin-left: 1vh;
background-color: rgb(199, 203, 255);
}
h1 {
margin: 0;
font-size: 150px;
}
h2 {
margin: 0;
font-size: 100px;
}
div {
display: block;
}
.theOne, .theTwo {
transition: transform 0.2s ease, background-color 0.2s ease;
}
.theOne:hover {
transform: translateY(-5px);
background-color: #ac89ff;
}
.theTwo:hover {
transform: translateY(-10px);
background-color: #ac89ff;
}