-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
67 lines (59 loc) · 983 Bytes
/
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
#main {
width: 100%;
position: relative;
}
.nav {
position: fixed;
display: flex;
justify-content: space-around;
align-items: center;
min-height: 8vh;
width: 100%;
color: white;
}
.info {
position: fixed;
top: 50%;
left: 0%;
width: 400px;
height: 600px;
display: flex;
flex-direction: column;
justify-content: start;
align-items: center;
padding: 10px;
background: rgb(255, 255, 255, 0.2);
backdrop-filter: blur(10px);
border-radius: 20px;
margin: 10px;
transform: translate(0%, -50%);
}
.info .close {
position: absolute;
top: 10px;
right: 10px;
font-size: 2rem;
cursor: pointer;
color: white;
}
#planetInfo {
padding: 10px;
margin: 10px;
color: white;
}
#planetInfo h2 {
font-size: 3rem;
font-weight: 400;
}
#planetImage {
border-radius: 20px;
}
#planetImage canvas {
border-radius: 20px !important;
}