forked from Simnation/Main
99 lines
1.5 KiB
CSS
99 lines
1.5 KiB
CSS
![]() |
/* [ Breathalyzer Script 0.1 Created By JKSensation ] */
|
||
|
/* [ DO NOT RELEASE/LEAK/SHARE CODE WITHOUT PERMISSION FROM JKSENSATION ] */
|
||
|
|
||
|
body {
|
||
|
background: none !important;
|
||
|
}
|
||
|
|
||
|
:root{
|
||
|
--color-red: #ca2f2f;
|
||
|
}
|
||
|
|
||
|
@font-face {
|
||
|
font-family: digital;
|
||
|
src: url(digital-7.ttf);
|
||
|
}
|
||
|
|
||
|
#container {
|
||
|
position: fixed;
|
||
|
top: 50%;
|
||
|
left: 75%;
|
||
|
transform: translate(-50%, -50%);
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
height: 600px;
|
||
|
width: 350px;
|
||
|
background-size: cover;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
.buttonContainer{
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
flex-direction: column;
|
||
|
margin-top: 45px;
|
||
|
/* background-color: #00804d; */
|
||
|
}
|
||
|
|
||
|
button{
|
||
|
padding: 7px 0px;
|
||
|
width: 100px;
|
||
|
margin-bottom: 5px;
|
||
|
font-weight: 800;
|
||
|
font-size: 14px;
|
||
|
border: 2px solid #333;
|
||
|
border-radius: 5px;
|
||
|
transition: 0.2s;
|
||
|
}
|
||
|
|
||
|
.green{
|
||
|
background: #54BF54;
|
||
|
}
|
||
|
|
||
|
.green:hover{
|
||
|
background: #469e46;
|
||
|
}
|
||
|
|
||
|
.green:active{
|
||
|
background: #367a36;
|
||
|
}
|
||
|
|
||
|
.red{
|
||
|
background: #ca2f2f;
|
||
|
}
|
||
|
|
||
|
.red:hover{
|
||
|
background: #bb2b2b;
|
||
|
}
|
||
|
|
||
|
.red:active{
|
||
|
background: #a72626;
|
||
|
}
|
||
|
|
||
|
.screen{
|
||
|
position: absolute;
|
||
|
top: 75px;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
.middle{
|
||
|
font-family: digital;
|
||
|
font-size: 65px;
|
||
|
font-weight: 100;
|
||
|
height: 50px;
|
||
|
margin: 0px;
|
||
|
}
|
||
|
|
||
|
.image{
|
||
|
background-image: url('./portablebreathalyzer.png');
|
||
|
margin-left: 40px;
|
||
|
width: 500px;
|
||
|
height: 600px;
|
||
|
position: absolute;
|
||
|
background-size: contain;
|
||
|
background-repeat: no-repeat;
|
||
|
z-index: -100;
|
||
|
}
|