-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
129 lines (108 loc) · 1.9 KB
/
styles.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
128
129
.option {
width: 180px;
height: 150px;
display: inline-block;
margin-right: 10px;
}
body {
background: pink;
text-align: center;
margin-left: 200px;
margin-right: 200px;
margin-top: 100px;
/* max-width: 1200px; */
/* gpt suggestions */
/* margin: 50px;
padding: 0 20px; */
}
h1,
h2,
p {
font-family: Verdana;
}
p {
font-size: 22px;
}
.selected {
border: 10px solid black;
border-radius: 20px;
}
.demo-span {
/* gpt suggestions */
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 10px;
}
.demo-img {
height: 300px;
width: auto;
/* margin-left: 10px;
margin-right: 10px; */
/* gpt suggestions */
/* height: auto; */
/* width: 100%; */
/* max-width: 400px; */
margin: 10px;
}
.demo-reward {
height: 150px;
width: auto;
max-width: 250px;
margin-left: 25px;
margin-right: 25px;
/* gpt suggestions */
/* height: auto;
width: 100%;
max-width: 150px;
margin: 10px; */
}
#game-display {
text-align: center;
}
#stage-1-options img {
height: 400px;
width: auto;
margin-top: 10px;
margin-left: 100px;
margin-right: 100px;
}
/* #stage-2-options {
display: flex;
justify-content: center;
align-items: center; */
/* } */
#reward-container {
display: flex;
justify-content: center;
align-items: center;
margin: 20px 0;
}
.reward-img {
height: 75px;
width: auto;
max-width: 125px
}
.planet-container {
position: relative;
}
.alien-container {
position: absolute;
bottom: 50px;
/* Adjust to move the aliens up or down on the planet */
left: 50%;
transform: translateX(-50%);
display: flex;
justify-content: center;
}
.planet-img {
height: 400px;
width: auto;
}
.alien-img {
height: 200px;
margin: 0 75px;
}
#reward-message {
color: midnightblue;
}