-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.css
86 lines (76 loc) · 1.62 KB
/
index.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
div#UI {
position: fixed;
right: 5px;
bottom: 5px;
z-index: 9;
padding: 0.8em;
border-radius: 15px;
background-color: lightgray;
}
#constellation-mode {
position: fixed;
right: 5px;
bottom: 65px;
z-index: 9;
padding: 1em;
border-radius: 10px;
background-color: lightgray;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
display: none;
gap: 10px;
flex-direction: column;
}
#constellation-mode label {
font-size: 14px;
margin-right: 10px;
}
#brightness {
width: 100%;
margin: 10px 0;
}
#constellation-mode button {
padding: 5px 10px;
font-size: 14px;
margin: 5px;
cursor: pointer;
background-color: white;
border: 1px solid #888;
border-radius: 5px;
transition: background-color 0.3s;
}
#constellation-mode button:hover {
background-color: #ddd;
}
.star-details {
position: absolute;
top: 10px;
right: 10px;
width: 200px;
padding: 10px;
background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black background */
color: white;
border: 1px solid #fff;
font-family: Arial, sans-serif;
z-index: 1000; /* Ensure it's on top of other elements */
border-radius: 8px;
}
.constellation-story {
position: absolute;
width: 90%;
height: 20%;
bottom: 7%;
text-align: center;
margin-left: 5%;
font: message-box;
font-size: 25px;
color: black;
opacity: 80%;
background-color: lightgray;
border-radius: 5px;
outline-color: 5px black;
overflow: auto;
visibility: hidden;
}
/* .constellation-story::-webkit-scrollbar {
display: none;
} */