-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
116 lines (101 loc) · 1.99 KB
/
style.css
File metadata and controls
116 lines (101 loc) · 1.99 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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
body{
background-image: url("public/assets/animation.svg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
}
.content{
display: flex;
justify-content: center;
height: 80vh;
align-items: center;
flex-direction: column;
gap: 3px;
}
.my-name{
margin: 0;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
font-family: "Sora", system-ui, sans-serif;
font-size: 2.5rem;
letter-spacing: 0.025em;
line-height: 2.5rem;
font-weight: 700;
}
.photo{
display: flex;
justify-content: center;
align-items: center;
object-fit: cover;
margin: 0;
animation: zoomIn 0.5s ease 0.1s backwards;
}
.photo img{
height: 10rem;
width: 10rem;
border: 4px solid #000000;
padding: 3px;
border-radius: 5rem;
box-sizing: border-box;
}
.slogan{
padding: 0;
margin: 0;
animation: zoomIn 0.5s ease 0.5s backwards;
}
.slogan p{
font-size: 0.75rem;
line-height: 1rem;
font-family:'raleway', sans-serif;
text-align: center;
letter-spacing: 0.025em;
font-weight: 300;
}
.what-I-do{
animation: zoomIn 0.5s ease 0.6s backwards;
}
.what-I-do p{
font-size: 0.875rem;
line-height: 1.25rem;
font-weight: 400;
letter-spacing: 0.025em;
text-align: center;
margin: 0;
margin-bottom: 5px;
}
.links a{
margin: 0;
display: inline-flex;
justify-content: center;
align-items: center;
transform: scale(1);
transition: transform 0.3s ease;
animation: zoomIn 0.5s ease 0.2s backwards;
padding: 0;
}
.links a:hover{
transform: scale(1.15);
}
.links a img{
width: 3.5rem;
height: 3.5rem;
}
@media(min-width: 768px){
.links a img{
width: 4rem;
height: 4rem;
}
}
@keyframes zoomIn{
from{
transform: scale(0.8);
opacity: 0;
}
to{
transform: scale(1);
opacity: 1;
}
}