-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathss.css
60 lines (58 loc) · 1.01 KB
/
ss.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
52
53
54
55
56
57
58
59
60
*{
padding: 0;
margin: 0;
}
.bg img{
z-index: -1;
position: fixed;
width: 100%;
}
#heading{
position: fixed;
width: 100%;
padding: 3vmin;
font-size: 8vmin;
text-align: center;
color: white;
z-index: 2;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
backdrop-filter: blur(10px);
}
.big{
border-radius: 50px;
padding: 5vmin;
padding-top: 20vmin;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 5vmin;
}
.small{
width: 50vmin;
height: 60vmin;
border-radius: 50px;
overflow: hidden;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
border: 2px solid white;
}
.img{
height: 40vmin;
width: 100%;
}
p{
padding: 1vmin;
align-content: center;
width: 100%;
height: 20vmin;
text-align: center;
font-size: 3vmin;
color: white;
backdrop-filter: blur(5px);
}
.small:hover{
scale: 1.05;
}