-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
79 lines (70 loc) · 1.21 KB
/
stylesheet.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
/* Style for every element */
section{
min-height: 100vh;
padding: 0vh 5vw;
scroll-snap-align : start;
background-color: black;
color: white;
}
img{
max-width: 50vw;
}
.wrapper{
scroll-snap-type: y mandatory;
}
/* Resume section */
.resume{
display: grid;
align-items: center;
}
/* Projects Section */
.projects>div{
display: flex;
align-items: center;
margin-top: 3vh;
}
.paraRight>p{
margin-left: 3vw;
}
.paraLeft>p{
margin-right: 3vw;
}
.hidden{
opacity: 0;
transition: all 1s;
padding: 0vh 0vw;
}
.shown{
opacity: 1;
transition: all 1s;
padding: 0vh 5vw;
}
/* Contact Page */
@keyframes iconEnlargement {
to{
width: 4vw;
}
}
.contact{
display: flex;
align-items: center;
justify-content: center;
}
.playIconAnimation > svg{
background-color: red;
width: 1vw;
border: 2px solid black;
border-radius: 50%;
animation-fill-mode: forwards;
animation-duration: 1s;
animation-name: iconEnlargement;
}
.contact > svg:nth-child(1){
animation-delay: 0.8s;
}
.contact > svg:nth-child(2){
animation-delay: 0.9s;
}
.contact > svg:nth-child(3){
animation-delay: 1.1s;
}