-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
111 lines (99 loc) · 2.28 KB
/
Copy pathstyles.css
File metadata and controls
111 lines (99 loc) · 2.28 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
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
body {
font-family: 'Orbitron', sans-serif; /* Futuristic font */
background: #000;
color: #0f0; /* Neon green text */
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-image: url('https://example.com/starry_background.jpg'); /* Replace with actual starry background */
background-size: cover;
background-repeat: no-repeat;
min-height: 100vh; /* Full viewport height */
}
header {
text-align: center;
background: rgba(0, 0, 0, 0.8);
width: 100%;
padding: 10px 0;
}
main {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center; /* Centers the main content vertically and horizontally */
}
#viewport {
width: 700px;
height: 400px;
border: 5px solid #FFD700; /* Gold border */
margin: 20px;
overflow: hidden;
box-shadow: 0 0 20px #FFD700; /* Gold glow */
}
#spaceView {
width: 100%;
height: 100%;
object-fit: cover;
}
#controls {
display: flex;
flex-direction: column;
align-items: center;
background: rgba(0, 0, 0, 0.8);
padding: 20px;
border-radius: 10px;
}
button {
padding: 10px 20px;
margin: 10px;
border: none;
background-color: #FF4500; /* Neon orange */
color: white;
font-size: 16px;
font-family: 'Orbitron', sans-serif;
cursor: pointer;
box-shadow: 0 0 10px #FF4500;
}
button:disabled {
background-color: #555;
}
.sliders input[type="range"] {
width: 300px;
margin: 10px;
/* -webkit-appearance: none; */
height: 10px;
border-radius: 5px;
background: #333;
outline: none;
}
.sliders input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 20px;
height: 20px;
border-radius: 50%;
background: #FF4500; /* Neon orange */
cursor: pointer;
box-shadow: 0 0 10px #FF4500; /* Glow effect */
}
#tasks {
margin: 20px;
padding: 10px;
border: 1px solid #FFD700; /* Gold border */
min-height: 50px;
width: 300px;
text-align: center;
font-size: 16px;
color: #FFD700; /* Gold text */
}
#status div {
margin: 5px;
color: #0f0; /* Neon green */
}
#score {
font-size: 20px;
color: #FFD700; /* Gold color */
}