-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathestilo.css
92 lines (91 loc) · 1.18 KB
/
estilo.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
@charset "UTF-8";
*{
font-family: sans-serif;
list-style: none;
padding: 0;
}
body{
background: #333;
}
.skills{
width: 500px;
margin: 60px auto;
color: white;
}
.skills li{
margin: 20px 0;
}
.bar{
background: #353b48;
display: block;
height: 2px;
border: 1px solid rgba(0,0,0,0.3);
border-radius: 3px;
overflow: hidden;
box-shadow: 0 0 10px #2187e7b3;
}
.bar span {
height: 2px;
float: left;
background: #2187e7b3;
}
.html{
width: 80%;
animation: html 2s;
}
.css{
width: 65%;
animation: css 2s;
}
.jquery{
width: 15%;
animation: jquery 2s;
}
.javaescript{
width: 20%;
animation: javaescript 2s;
}
.cs3 {
width: 45%;
animation: cs3 2s;
}
@keyframes html {
0%{
width: 0%;
}
100%{
width: 80%;
}
}
@keyframes css {
0%{
width: 0%;
}
100%{
width: 65%;
}
}
@keyframes jquery {
0%{
width: 0%;
}
100%{
width: 15%;
}
}
@keyframes javaescript {
0%{
width: 0%;
}
100%{
width: 20%;
}
}
@keyframes cs3 {
0%{
width: 0%;
}
100%{
width: 45%;
}
}