-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (68 loc) · 1.47 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
body {
height: 100vh;
display: flex;
flex-direction: column;
align-content: center;
text-align: center;
background-image: url("./assets/space.webp");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
filter: opacity(0.8);
margin: 0;
}
.titan-one-regular {
font-family: "Titan One", sans-serif;
font-weight: 400;
font-style: normal;
}
h1 {
color: yellow;
}
button {
width: 8rem;
padding: 10px 5px;
background-color:slategrey;
color: white;
align-self: center;
border-radius: 10px;
}
button:hover {
background-color: yellow;
color: black;
box-shadow: 0px 0px 20px yellow;
}
#iss-img {
width: 50px;
margin-top: 2rem;
position: relative;
animation: move-iss 3s linear 1s 1 both;
}
@keyframes move-iss {
0% { transform: translate(0px, 200px) rotate(0deg) scale(0.2, 0.2); }
100% { transform: translate(48.5vw, 10px) rotate(-40deg) scale(1.5, 1.5); }
}
#iss-location {
display: none;
align-self: center;
border: 2px solid rgb(255, 255, 255, 0.5);
height: 160px;
width: 400px;
margin-top: 2rem;
/* background-color: hsla(65, 20%, 50%, 0.5); */
background-color: hsla(60, 7%, 45%, 0.5);
border-radius: 10px;
font-size: large;
}
/* .coordinates {
color: white;
font-size: large;
} */
p {
color: white;
}
#location {
margin-top: 2.5rem;
color: yellow;
font-weight: bold;
}