-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (48 loc) · 1.01 KB
/
style.css
File metadata and controls
49 lines (48 loc) · 1.01 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
@import url("https://fonts.googleapis.com/css2?family=Bitcount+Grid+Double:wght@100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Bitcount Grid Double";
}
html,
body {
height: 100%;
width: 100%;
}
#main {
height: 100%;
width: 100%;
background-color: #333;
display: flex;
align-items: center;
justify-content: center;
}
#cursor {
height: 15px;
width: 15px;
background-color: white;
border-radius: 50%;
position: fixed;
pointer-events: none;
font-size: 3px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
z-index: 9;
}
#image {
height: 40vh;
width: 25vw;
overflow: hidden;
border: 2px solid whitesmoke;
cursor: pointer;
}
#image img {
height: 100%;
width: 100%;
object-fit: cover;
object-position: center;
transition: all ease 1s;
}