-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.scss
74 lines (68 loc) · 996 Bytes
/
style.scss
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
body{
background-color: black;
}
#space{
z-index:1;
height: 100%;
height: 100vh;
width: 100%;
width: 100vw;
background-color: black;
}
#info-container {
display: flex;
flex-direction: column;
#instructions {
position: absolute;
top: 40px;
color: white;
}
}
#planet-info-table{
border-color: 1px solid white;
position: absolute;
z-index: 100;
top: 0;
right: 0;
width: 300px;
height: 300px;
*{
color: white;
}
table{
position: relative;
width: 100%;
}
#planet-composition{
margin: 20px 0px 20px 0px;
tr{
margin-top: 10px;
}
}
}
#hide-info-button{
border: 1px solid white;
background-color: black;
color: white;
position: absolute;
z-index: 100;
top: 100;
left: 100;
width: 150px;
height: 40px;
cursor: pointer;
outline: none;
}
#planet-form{
z-index: 1000;
margin-top: 40px;
h1{
color: white;
}
input{
margin-top: 10px;
}
button{
margin-top: 10px;
}
}