-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle1.css
146 lines (139 loc) · 2.35 KB
/
style1.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
*{
margin : 0px ;
padding : 0px ;
box-sizing : border-box ;
}
body{
display : flex ;
justify-content : center ;
align-items : center ;
min-height: 100vh;
background :#000;
}
.loader
{
position : relative ;
width: 200px ;
height : 200px ;
overflow: hidden ;
-webkit-box-reflect:below 1px linear-gradient(transparent,#0005) ;
}
div{
float :left ;
margin-left : -400px ;
text-decoration: none ;
}
h1{
font-size: 1100%;
font-family: 'Orbitron', sans-serif;
text-decoration: none ;
color: #fff ;
margin-left:100px ;
}
#welcome{
text-decoration: none ;
color:#fff ;
}
ul{
text-decoration: none ;
font-size: 35px;
font-family: 'Orbitron', sans-serif;
color: #fff;
margin-top : 300px ;
margin-left: -390px ;
}
.loader:hover
{
background: #03e9f4;
box-shadow: 0 0 5px #03e9f4 ,
0 0 25px #03e9f4,
0 0 50px #03e9f4,
0 0 200px #03e9f4;
}
.loader span
{
position :absolute ;
display:block ;
}
.loader span:nth-child(1)
{
top:0;
left:-100;
width:100% ;
height: 40px ;
background: linear-gradient(90deg,transparent,#03e9f4);
animation :animate1 1s linear infinite;
animation-delay: 0s;
}
@keyframes animate1
{
0%{
left: -100%;
}
100%{
left :100% ;
}
}
.loader span:nth-child(3)
{
bottom:0;
left:-100;
width:100% ;
height: 40px ;
background: linear-gradient(270deg,transparent,#03e9f4);
animation :animate3 1s linear infinite;
animation-delay: 0s;
}
@keyframes animate3
{
0%{
left: 100%;
}
100%{
left :-100% ;
}
}
.loader span:nth-child(2)
{
right:0;
top:-100;
width: 40px;
height: 100% ;
background: linear-gradient(180deg,transparent,#03e9f4);
animation :animate2 1s linear infinite;
animation-delay: 0.5s;
}
@keyframes animate2
{
0%{
top: -100%;
}
100%{
top :100% ;
}
}
.loader span:nth-child(4)
{
left:0;
top:100%;
width:40px ;
height: 100% ;
background: linear-gradient(0deg,transparent,#03e9f4);
animation :animate4 1s linear infinite;
animation-delay: 0.5s;
}
@keyframes animate4
{
0%{
top: 100%;
}
100%{
top :-100% ;
}
}
h1{
color:white ;
}
a{
color: #fff;
}