-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (38 loc) · 705 Bytes
/
style.css
File metadata and controls
43 lines (38 loc) · 705 Bytes
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
body {
height: 100vh;
width: 200vh;
background: rgb(5,0,5);
margin: 0rem;
overflow: hidden;
}
#heading {
color: aliceblue;
font-size: large;
font-family: sans-serif;
letter-spacing: -0.1ch;
position: relative;
top: 12%;
left: 50%;
/* width: 50%; */
transform: translate(-50%, -50%);
margin: auto;
display: flex;
justify-content: center;
}
#heading > * {
padding: 1%;
}
#image-track > .image {
width: 38vmin;
height: 54vmin;
object-fit: none;
object-position: center;
}
#image-track {
display: flex;
gap: 4vmin;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}