-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
73 lines (57 loc) · 1.2 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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Source Sans Pro', sans-serif;
}
.container{
background-color: rgb(24, 24, 24);
height:100vh;
overflow-y: scroll;
scroll-snap-type: y mandatory;
}
.about-section{
color: rgb(119, 119, 119);
font-size: larger;
display:flex;
align-items: center;
justify-content: center;
flex-direction: column;
line-height: 2rem;
}
.about{
display:flex;
align-items: center;
justify-content: center;
height: 1000px;
width: 1000px;
}
img {
object-fit: cover;
width: 100%;
height: 100%;
border-radius: 40%
}
.about-content{
margin-left: 10px;
}
.hand{
display: inline;
margin-left:20px;
}
.hand :hover{
transition: transform .8s ease-in-out;
transform: rotate(360deg) rotate(360deg) rotate(360deg) rotate(180deg) rotate(-180deg) rotate(-360deg);
}
.construction{
display:flex;
justify-content:center;
align-items: center;
}
section{
height:100vh;
display: flex;
justify-content:start;
color: rgb(113 97 84);
scroll-snap-align: start;
}