-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
127 lines (103 loc) · 1.9 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
125
126
127
body {
background-image: url(/bg-stars.gif);
font-family: sans-serif;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
h1 {
color: rgb(234, 234, 234);
font-family: Arial, Helvetica, sans-serif;
font-size: 3em;
text-shadow: 2.5px 1.5px #90a1d8;
display: flex;
justify-content: center;
margin-top: 15px;
}
#form {
display: flex;
justify-content: center;
align-items: center;
}
input {
margin: 0 10px;
}
select {
margin: 0 10px;
}
button {
margin: 0 10px;
}
img {
width: 450px;
margin: 50px;
}
#planet-display{
display: flex;
justify-content: space-evenly;
align-items: center;
margin-top: 40px;
background-color: rgba(255, 255, 255, 0.2);
height: 500px;
width: 85%;
flex-direction: row-reverse;
}
#planet-weight-div {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background-color: rgba(255, 255, 255, 0.2);
height: 350px;
width: 600px;
margin: 50px;
border-radius: 5%;
}
.weight-class {
margin: 20px;
padding: 50px 30px;
background-color: rgba(255, 255, 255, 0.2);
border-radius: 50%;
}
#info-text {
font-size: 25px;
text-align: center;
margin: 10px;
}
.planet-name {
font-weight: bolder;
}
#planet-photo-div {
display: flex;
justify-content: center;
align-items: center;
}
input {
width: 500px;
height: 30px;
font-size: 25px;
}
select {
width: 300px;
font-size: 20px;
height: 40px;
}
button {
background-color: rgb(92, 90, 90);
color: white;
border: 0;
font-size: 25px;
height: 40px;
width: 200px;
}
button:hover {
background-color: rgb(219, 219, 219);
color: black;
cursor: pointer;
}
#main-content {
display: flex;
justify-content: center;
align-items: center;
}