-
Notifications
You must be signed in to change notification settings - Fork 1
/
myCV.css
134 lines (115 loc) · 2.2 KB
/
myCV.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
.w3-steelblue, .w3-hover-steelblue:hover {
color: #fff !important;
background-color: steelblue !important
}
.w3-text-steelblue {
color: steelblue;
}
.w3-display-middleleft {
position: absolute;
left: 0;
bottom: 10%
}
#level50 {
animation: incBar50;
animation-fill-mode: forwards;
animation-duration: 7s;
}
#level60 {
animation: incBar60;
animation-fill-mode: forwards;
animation-duration: 10s;
}
#level70 {
animation: incBar70;
animation-fill-mode: forwards;
animation-duration: 7s;
}
#level75 {
animation: incBar75;
animation-fill-mode: forwards;
animation-duration: 6s;
}
#level80 {
animation: incBar80;
animation-fill-mode: forwards;
animation-duration: 5s;
}
#level90 {
animation: incBar90;
animation-fill-mode: forwards;
animation-duration: 4s;
}
#level95 {
animation: incBar95;
animation-fill-mode: forwards;
animation-duration: 8s;
}
#level100 {
animation: incBar100;
animation-fill-mode: forwards;
animation-duration: 9s;
}
@-webkit-keyframes incBar50 {
from {width: 0%;}
to {width: 50%;}
}
@-webkit-keyframes incBar60 {
from {width: 0%;}
to {width: 60%;}
}
@-webkit-keyframes incBar70 {
from {width: 0%;}
to {width: 70%;}
}
@-webkit-keyframes incBar75 {
from {width: 0%;}
to {width: 75%;}
}
@-webkit-keyframes incBar80 {
from {width: 0%;}
to {width: 80%;}
}
@-webkit-keyframes incBar90 {
from {width: 0%;}
to {width: 90%;}
}
@-webkit-keyframes incBar95 {
from {width: 0%;}
to {width: 95%;}
}
@-webkit-keyframes incBar100 {
from {width: 0%;}
to {width: 100%;}
}
#txAd {
-webkit-animation-name: numbUp;
-webkit-animation-duration: 4s;
}
@-webkit-keyframes numbUp {
from {}
}
.jsSwing {
}
i:hover {
-webkit-animation-name: iSwing;
-webkit-animation-duration: 0.16s;
animation-timing-function:linear;
animation-iteration-count: 4;
}
@-webkit-keyframes iSwing {
from { transform: rotate(-20deg);}
to {transform: rotate(20deg);}
}
/* effects in my picture */
.myAvatar {
width: 100%;
position: centered;
filter: brightness(300%);
animation: photoEffect;
animation-fill-mode: forwards;
animation-duration: 4s;
}
@-webkit-keyframes photoEffect {
from {filter: brightness(250%) grayscale(100%);}
to {filter: brightness(100%) grayscale(0%);}}