-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
82 lines (76 loc) · 1.76 KB
/
index.css
File metadata and controls
82 lines (76 loc) · 1.76 KB
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
.space{
background-image: url(space.png);
}
.planet-area{
position: relative;
left:0;
bottom: 0;
}
.rocket{
position:absolute;
transform: rotate(45deg);
left: 400px;
}
.planet{
position:relative;
bottom:-20px;
left: 0px;
}
.control-panel{
position: absolute;
right:0;
bottom:0;
display:flex;
flex-wrap: wrap;
width: 250px;
background-color: #FF7D9D;
background-size: 58px 58px;
background-position: 0px 2px, 4px 35px, 29px 31px, 33px 6px,
0px 36px, 4px 2px, 29px 6px, 33px 30px;
background-image:
linear-gradient(335deg, #C90032 23px, transparent 23px),
linear-gradient(155deg, #C90032 23px, transparent 23px),
linear-gradient(335deg, #C90032 23px, transparent 23px),
linear-gradient(155deg, #C90032 23px, transparent 23px),
linear-gradient(335deg, #C90032 10px, transparent 10px),
linear-gradient(155deg, #C90032 10px, transparent 10px),
linear-gradient(335deg, #C90032 10px, transparent 10px),
linear-gradient(155deg, #C90032 10px, transparent 10px);
padding:20px;
}
.check-buttons{
width:250px;
display: flex;
flex-direction:row;
align-items: center;
justify-content: center;
}
.levers{
width:250px;
display: flex;
flex-direction:row;
align-items: center;
justify-content: center;
}
input[type=range]{
-webkit-appearance: slider-vertical;
width:40px;
}
.launch-button{
margin:0 auto;
border-radius: 10px;
background-color: red;
display:flex;
}
.control-panel__inner{
background-color: grey;
}
.textbox{
border: 2px solid darkgray;
margin:10px;
color:red;
}
.ok-button{
border: 2px solid darkgray;
background-color:yellow;
}