-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
171 lines (165 loc) · 3.3 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
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
body{
margin: 0;
padding: 0;
background: url(bg-2.jpg) no-repeat;
background-size:cover;
background-size: 100%;
}
.box{
width: 1000px;
background: rgba(9, 66, 92, 0.651);
padding: 40px;
text-align: center;
margin: auto;
margin-top: 5%;
color: white;
font-family: 'Century Gothic',sans-serif;
height: 1000px;
margin-bottom: 5%;
}
.box-img{
border-radius: 70%;
width: 200px;
height: 200px;
}
.box h1{
font-size: 40px;
letter-spacing: 4px;
font-weight: 100;
text-transform: uppercase;
}
.box h5{
font-size: 20px;
letter-spacing: 3px;
font-weight: 100;
}
.box p{
text-align: justify;
}
ul{
padding: 0;
margin: 0;
}
.box li{
display: inline-block;
margin: 6px;
list-style: none;
}
.box li a{
color: rgb(255, 255, 255);
text-decoration: none;
font-size: 40px;
transition: all ease-in-out 250ms;
}
.box li a:hover{
color: #b9b9b9;
}
.all {
width:60%;
}
#yt:hover{
color: red;
}
#tw:hover{
color:rgba(119, 119, 224, 0.89);
}
#sn:hover{
color: yellow;
}
.progress {
background: rgba(255,255,255,0.1);
display: flex;
float: left;
justify-content: flex-start;
border-radius: 100px;
align-items: center;
position: relative;
margin-left: 100px;
padding: 0 5px;
height: 40px;
width: 700px;
}
.progress-value {
animation: javascript 3s normal forwards;
animation-iteration-count: infinite;
box-shadow: 0 10px 40px -10px #fff;
border-radius: 100px;
background: rgb(252, 237, 30);
height: 30px;
width: 0;
}
@keyframes javascript {
0% { width: 0; }
100% { width: 60%; }
}
.labdiv{
float: left;
display: inline-block;
position: relative;
margin-left: 6em;
}
.css {
animation: css 3s normal forwards;
animation-iteration-count: infinite;
box-shadow: 0 10px 40px -10px #fff;
border-radius: 100px;
background: rgb(31, 146, 240);
height: 30px;
width: 0;
}
@keyframes css {
0% { width: 0; }
100% { width: 100%; }
}
.html {
animation: html 3s normal forwards;
animation-iteration-count: infinite;
box-shadow: 0 10px 40px -10px #fff;
border-radius: 100px;
background: rgb(211, 70, 51);
height: 30px;
width: 0;
}
@keyframes html {
0% { width: 0; }
100% { width: 100%; }
}
.git {
animation: git 3s normal forwards;
animation-iteration-count: infinite;
box-shadow: 0 10px 40px -10px #fff;
border-radius: 100px;
background: rgb(241, 118, 102);
height: 30px;
width: 0;
}
@keyframes git {
0% { width: 0; }
100% { width: 70%; }
}
.photo{
animation: photoshop 3s normal forwards;
animation-iteration-count: infinite;
box-shadow: 0 10px 40px -10px #fff;
border-radius: 100px;
background: rgb(106, 59, 235);
height: 30px;
width: 0;
}
@keyframes photoshop {
0% { width: 0; }
100% { width: 90%; }
}
.final{
animation: final 3s normal forwards;
animation-iteration-count: infinite;
box-shadow: 0 10px 40px -10px #fff;
border-radius: 100px;
background: rgb(255, 255, 255);
height: 30px;
width: 0;
}
@keyframes final {
0% { width: 0; }
100% { width: 100%; }
}