mirror of
https://github.com/He4eT/BadBarSlots.git
synced 2026-05-05 00:17:23 +00:00
initial
This commit is contained in:
commit
1ad599b265
8 changed files with 783 additions and 0 deletions
60
css/style.css
Normal file
60
css/style.css
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
html, body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
body {
|
||||
display:flex;
|
||||
align-items:center;
|
||||
justify-content:center;
|
||||
background-color: #212121;
|
||||
}
|
||||
|
||||
.wrap {
|
||||
padding: 50px;
|
||||
background-color: #fff;
|
||||
background-color: #424242;
|
||||
box-shadow: 0 0 50px 1px #ff3000;
|
||||
}
|
||||
|
||||
.logo {
|
||||
text-align: center;
|
||||
margin-bottom: 100px;
|
||||
}
|
||||
|
||||
.jSlots-wrapper {
|
||||
overflow: hidden;
|
||||
height: 100px;
|
||||
display: inline-block; /* to size correctly, can use float too, or width*/
|
||||
/*border: 2px solid #999;*/
|
||||
transform: translateZ(0);
|
||||
background-color: #212121;
|
||||
padding: 0 5px;
|
||||
}
|
||||
|
||||
.slots {
|
||||
box-shadow: 0 0 10px 1px #000 inset;
|
||||
font-size: 0;
|
||||
}
|
||||
|
||||
ul {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.slot {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.slot li {
|
||||
text-align: center;
|
||||
padding: 0 30px;
|
||||
margin: 0 10px;
|
||||
line-height: 100px;
|
||||
font-size: 2rem;
|
||||
border-left: 2px solid #ccc;
|
||||
border-right: 2px solid #ccc;
|
||||
background-color: #424242;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue