forked from Yoinnkkk/Altar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
188 lines (162 loc) · 3.75 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100&display=swap');
* {
font-family: "Roboto Slab";
}
html {
--colour: rgb(45, 54, 63);
text-align: center;
width: 100%;
height: 90%;
margin: 0;
padding: 0;
}
p {
color: white;
}
body {
width: 100%;
height: 100%;
padding: 0;
margin: 0;
}
.blood {
color:white;
text-align: center;
}
button {
width: 10em;
height: 2em;
margin: .5em;
border-radius: .5em;
border-style: solid;
border-color: black;
color: white;
background-color: var(--colour);
outline: none;
font-weight: bolder;
}
button:hover {
cursor: pointer;
background-color: grey;
color: black;
font-weight: bolder;
}
#shopMenu {
flex-direction: column;
align-items: center;
}
#shopMenu #button-div {
display: flex;
flex-direction: row;
align-content: space-around;
}
#shopMenu button {
width: 15em;
}
.button-dngr {
color: red;
font-weight: bolder;
}
.button-dngr:hover {
cursor: pointer;
background-color: red;
color: white;
}
#stabFingerMenu {
position: absolute;
width: 35%;
height: 25%;
padding: 0;
margin: 0;
top: 50%;
transform: translateY(-50%);
left: 0;
right: 0;
margin: auto;
}
#stabFingerMenu button {
font-size: 1.75em;
width: 100%;
height: 100%;
margin: 0;
}
#settingsMenu {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#settingsMenu label {
color: white;
font-weight: bolder;
margin-top: 1em ;
margin-bottom: .5em;
}
/* The slider itself */
#settingsMenu input {
-webkit-appearance: none; /* Override default CSS styles */
appearance: none;
width: 10em; /* Full-width */
height: 1em; /* Specified height */
background: #d3d3d3; /* Grey background */
outline: none; /* Remove outline */
opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
-webkit-transition: .2s; /* 0.2 seconds transition on hover */
transition: opacity .2s;
border-radius: 5px;
}
/* Mouse-over effects */
#settingsMenu input:hover {
opacity: 1; /* Fully shown on mouse-over */
}
/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
#settingsMenu input::-webkit-slider-thumb {
-webkit-appearance: none; /* Override default look */
appearance: none;
width: 25px; /* Set a specific slider handle width */
height: 25px; /* Slider handle height */
border-radius: 50%;
border-color: white;
border-style: solid;
background: var(--colour); /* Green background */
cursor: pointer; /* Cursor on hover */
}
#settingsMenu input::-moz-range-thumb {
width: 25px; /* Set a specific slider handle width */
height: 25px; /* Slider handle height */
background: var(--colour); /* Green background */
border-radius: 50%;
border-color: white;
border-style: solid;
cursor: pointer; /* Cursor on hover */
}
#researchBar {
margin: 0;
padding: 0;
width: 300px;
background-color: rgb(45, 54, 63);
overflow: auto;
border-style: solid;
border-width: thin;
position: absolute;
left: 0;
top: 0;
bottom: 0;
}
div.content {
margin-left: 300px;
padding: 1px 16px;
height: 100%;
}
@keyframes button {
from {top: 75%;}
to {top: 0%;}
}
#researchBar button {
border-radius: 0em;
position: relative;
width: 20em;
height: 7em;
animation-name: button;
animation-duration: 2s;
}