-
Notifications
You must be signed in to change notification settings - Fork 0
/
skills.css
111 lines (106 loc) · 1.73 KB
/
skills.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
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
:root{
--defmar: 5px;
--defpad: 5px;
--border: 2px solid black;
--color: rgba(239, 220, 212, 1);
}
*{
margin: 0px;
padding: 0px;
}
/* navbar */
nav{
position: sticky;
top: 0px;
width: 1700px;
z-index: 1;
background-color: var(--color);
display: flex;
justify-content: space-around;
align-items: center;
}
.h3{
margin: 10px;
padding: 10px;
}
.container1{
display: flex;
justify-content: space-between;
align-items: center;
}
ul{
display: flex;
justify-content: flex-start;
align-items: center;
}
ul li{
margin: 10px;
padding: 10px;
list-style: none;
}
ul li:hover{
cursor: pointer;
color: rgb(114, 84, 70);
}
/* skills */
.skills{
/* padding: 10px; */
width: 1700px;
position: relative;
/* text-align: center; */
/* top: 197px; */
}
.skillsh1{
font-size: 80px;
text-align: center;
position: absolute;
top: 30px;
left: 750px;
text-decoration: underline;
}
.skillbg{
width: 1683px;
height: 717px;
z-index: 0;
}
.skillimg{
position: absolute;
top: 220px;
left: 500px;
/* z-index: 0.5; */
margin: 10px;
padding: 10px;
display: grid;
grid-template-columns: 200px 200px 200px 200px;
grid-template-rows: 200px 200px;
}
.imghover{
cursor: pointer;
}
.imghover:hover{
transform: scale(1.5);
}
.animateY1{
animation: animationY1 1s ease-in-out 1;
}
.animateY2{
animation: animationY2 1s ease-in-out 1;
}
@keyframes animationY1
{
from{
transform: translateY(-50px) ;
}
to{
transform: translateY(0px);
}
}
@keyframes animationY2
{
from{
transform: translateY(50px) ;
}
to{
transform: translateY(0px);
}
}