mirror of
https://github.com/He4eT/BadBarSlots.git
synced 2026-05-05 08:27:22 +00:00
styling
This commit is contained in:
parent
32a10f361c
commit
06dbeb7227
1 changed files with 55 additions and 18 deletions
|
|
@ -1,3 +1,9 @@
|
||||||
|
@keyframes load {
|
||||||
|
0% { opacity: 0; }
|
||||||
|
30% { opacity: 0; }
|
||||||
|
100% { opacity: 1; }
|
||||||
|
}
|
||||||
|
|
||||||
html, body {
|
html, body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
@ -11,29 +17,37 @@ body {
|
||||||
background-color: #212121;
|
background-color: #212121;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.nocursor {
|
||||||
|
cursor : none;
|
||||||
|
}
|
||||||
|
|
||||||
.wrap {
|
.wrap {
|
||||||
padding: 50px;
|
animation: load 0.4s ease-in;
|
||||||
|
padding: 10vh;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
background-color: #424242;
|
background-color: #424242;
|
||||||
box-shadow: 0 0 50px 1px #ff3000;
|
box-shadow: 0 0 6vh 0.5vh #ff3000;
|
||||||
|
border: 2px solid #ffa52e;
|
||||||
}
|
}
|
||||||
|
|
||||||
.logo {
|
.logo {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin-bottom: 50px;
|
margin-bottom: 8vh;
|
||||||
}
|
}
|
||||||
|
|
||||||
.logo img {
|
.logo img {
|
||||||
filter: drop-shadow(0px 12px 20px rgba(255,48,0,0.5));
|
height: 30vh;
|
||||||
|
filter: drop-shadow(0px 12px 10px rgba(255,48,0,0.5));
|
||||||
}
|
}
|
||||||
|
|
||||||
.jSlots-wrapper {
|
.jSlots-wrapper {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
height: 100px;
|
height: 13vh;
|
||||||
display: inline-block; /* to size correctly, can use float too, or width*/
|
display: inline-block; /* to size correctly, can use float too, or width*/
|
||||||
transform: translateZ(0);
|
transform: translateZ(0);
|
||||||
background-color: #212121;
|
background-color: #212121;
|
||||||
padding: 0 5px;
|
padding: 0 1vh;
|
||||||
|
box-shadow: 0 0 2vh 0.5vh #000 inset;
|
||||||
}
|
}
|
||||||
|
|
||||||
.jSlots-wrapper:before,
|
.jSlots-wrapper:before,
|
||||||
|
|
@ -42,7 +56,7 @@ body {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
box-shadow: 0 0 10px 3px #000;
|
box-shadow: 0 0 2vh 1vh #000;
|
||||||
z-index: 10;
|
z-index: 10;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -54,28 +68,51 @@ body {
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul {
|
|
||||||
padding: 0;
|
|
||||||
margin: 0;
|
|
||||||
list-style: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.slot {
|
.slot {
|
||||||
float: left;
|
float: left;
|
||||||
margin: 0 10px;
|
margin: 0 2vh;
|
||||||
box-shadow: 0 0 10px 2px #ff3000;
|
box-shadow: 0 0 2vh 2px #ff3000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.slot li {
|
.slot li {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 0 30px;
|
padding: 0 4vh;
|
||||||
line-height: 100px;
|
line-height: 13vh;
|
||||||
font-size: 2rem;
|
font-size: 2rem;
|
||||||
background-color: #616161;
|
background-color: #616161;
|
||||||
color: #ffa52e;
|
color: #ffa52e;
|
||||||
font-family: monospace;
|
font-family: monospace;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
letter-spacing: 1px;
|
letter-spacing: 1px;
|
||||||
text-shadow: #ff3000 0px 0px 25px;
|
text-shadow: #ff3000 0px 0px 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.data {
|
||||||
|
background-color: inherit;
|
||||||
|
line-height: 2.5vh;
|
||||||
|
font-size: 1.5rem;
|
||||||
|
color: orange;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.start {
|
||||||
|
border: 2px solid orange;
|
||||||
|
padding: 2vh 3vh;
|
||||||
|
color: orange;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 2rem;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.start:hover {
|
||||||
|
border-color: red;
|
||||||
|
color: red;
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue