-
Notifications
You must be signed in to change notification settings - Fork 585
/
style.css
124 lines (114 loc) · 1.81 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
*{
margin:0;
padding:0;
}
.navbar{
width:100%;
min-height: 10%;
min-width: 100%;
color:thistle;
float: left;
}
.list{
display:flex;
flex-direction: row;
list-style: none;
}
li{
padding:1vw;
}
li>a{
text-decoration: none;
color:inherit;
}
.push{
margin-left:auto;
}
body{
background:#07252d;
}
.area h2{
position:absolute;
top:30%;
font-size:10vw;
letter-spacing: 10px;
width:100%;
color:#0e3742;
-webkit-box-reflect: below 1px linear-gradient(transparent, #0008);
line-height:0.70em;
text-align: center;
text-transform: uppercase;
animation:animate 5s linear infinite;
}
@keyframes animate{
0%,17%,50%,65%,90%,97%{
color:#0e3742;
text-shadow: none;
}
17.1%,50.1%,65.1%,90.1%,97.1%,100%{
color:#fff;
text-shadow:5px 5px 17px #03b9ff;
}
}
.area{
width:100%;
height:100%;
}
.area div{
animation:animate2 10s linear infinite;
background-color: transparent;
border:1px solid #fff;
position: absolute;
}
div:nth-child(1){
left:30%;
top:70%;
height:40px;
width:40px;
}
div:nth-child(2){
left:60%;
top:80%;
height:40px;
width:40px;
}
div:nth-child(3){
left:10%;
top:30%;
height:40px;
width:40px;
}
div:nth-child(4){
left:15%;
top:90%;
height:40px;
width:40px;
}
div:nth-child(5){
left:45%;
top:100%;
height:40px;
width:40px;
animation-delay: 0.5s;
}
div:nth-child(6){
left:80%;
top:90%;
height:40px;
width:40px;
}
div:nth-child(7){
left:36%;
top:100%;
height:40px;
width:40px;
animation-delay: 4s;
}
@keyframes animate2{
0%{
transform: translateY(0) rotate(0);
}
100%{
transform: translateY(-500px) rotate(360deg);
}
}