-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
80 lines (73 loc) · 1.22 KB
/
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
@import url("https://fonts.googleapis.com/css2?family=Varela+Round&display=swap");
body,
html {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
}
body {
box-sizing: border-box;
padding: 3vh;
background-image: url(assets/bg.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
align-items: center;
text-align: center;
font-family: "Varela Round", sans-serif;
}
.img img {
border-radius: 100%;
width: 150px;
grid-column: 1;
grid-row: 1;
}
.blur {
filter: blur(10px);
z-index: -99;
}
.img {
display: grid;
place-items: center;
margin: 40px;
}
h1 {
margin: auto;
}
#items {
display: grid;
place-items: center;
}
a {
width: 500px;
margin: 10px;
text-decoration: none;
color: black;
user-select: none;
height: 10vh;
}
.item {
border: 5px solid pink;
border-radius: 10px;
background-color: rgba(255, 192, 203, 0.4);
display: flex;
font-size: 10px;
width: 97%;
height: 100%;
transition-duration: 0.5s;
}
.item:hover {
transform: scale(1.05);
background-color: rgba(243, 199, 206, 0.7);
}
@media only screen and (max-width: 560px) {
a {
width: 100%;
}
}
.item img {
height: 80%;
aspect-ratio: 1 / 1;
margin: 10px;
}