-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcv.css
91 lines (74 loc) · 1.62 KB
/
cv.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family:'Poppins', sans-serif;
border: none;
outline: none;
scroll-behavior: smooth;
}
a{text-decoration: none;}
li{list-style: none;}
header {
height: 50px;
width: 100%;}
header li{
width: 100%;
height: 50px;
display: flex;
align-items: center;
background-color: #1f242d;
position: fixed;
top: 0;
z-index: 10;
justify-content: center;
animation-name: header-li;
animation-duration: 5s;
}
@keyframes header-li {
0% {background-color: #01EEFF;}
25% {background-color: #006d75;}
50% {background-color: #1f242d;}
25% {background-color: #01EEFF;}
0% {background-color: #1f242d;}
}
header li a{
display: flex;
color: aliceblue;
font-size: 20px;
}
header li :hover{
font-size: 24px;
padding-left: 15px;
padding-right: 15px;
color: aqua;
}
#cv img{
display: flex;
width: 100%;
}
footer{
height: 30px;
width: 100%;}
footer li {
width: 100%;
height: 50px;
display: flex;
align-items: center;
background-color: #1f242d;
justify-content: center;
}
footer li a{
color: aliceblue;
background-color: rgb(0, 203, 203);
border-radius: 20px;
padding: 7px;
padding-left: 15px;
padding-right: 15px;
transition: all 0.5s ease-in-out;
}
footer li a:hover{
background-color: #1f242d;
border: 2px solid #01EEFF;
border-radius: 20px;
}