-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
126 lines (105 loc) · 1.81 KB
/
index.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
.openingMessage {
text-align: center;
margin-top: 300px;
}
.js-welcomeMessage {
opacity: 0;
}
.js-welcomeMessage1 {
opacity: 1;
display: flex;
justify-content: center;
animation: fadeIn1 1s ease-in 1;
}
.js-instructions {
opacity: 0;
}
.js-instructions1 {
opacity: 1;
display: flex;
justify-content: center;
animation: fadeIn1 1s ease-in 1;
}
@keyframes fadeIn1 {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
body {
background-color: black;
font-family: Verdana, Geneva, Tahoma, sans-serif;
color: white;
animation: cosmos 60s infinite;
}
@keyframes cosmos {
20% {
background-color: blue;
}
40% {
background-color: orange
}
60% {
background-color: brown;
}
80% {
background-color: purple;
}
}
.name {
display: block;
margin-right: auto;
margin-left: auto;
text-align: center;
width: 500px;
height: 50px;
font-size: 50px;
}
.greeting {
display: inline-block;
display: none;
font-size: 50px;
}
.greeting1 {
display: inline-block;
}
.earthPosition {
opacity: 0;
}
.earthPosition1 {
opacity: 1;
display: flex;
justify-content: center;
animation: fadeIn2 5s ease-in 1;
}
.earth1 {
position: relative;
background-image: url(./earth.jpg);
border-radius: 50%;
width: 300px;
height: 300px;
margin-left: 20px;
margin-top: 20px;
animation: earthRotate 30s alternate infinite linear;
box-shadow: -20px -20px 50px 2px #000 inset;
background-size: cover;
}
@keyframes earthRotate {
100% {
background-position: 100%;
}
}
@keyframes fadeIn2 {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.time {
position: absolute;
left: 100px;
}