You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
196 lines
3.5 KiB
196 lines
3.5 KiB
/* Copyright © 2023 Entreprise SkamKraft */ |
|
|
|
:root { |
|
--main-back-color: rgb(143, 143, 143); |
|
--second-back-color: black; |
|
} |
|
|
|
@font-face { |
|
font-family: M42; |
|
src: url("/assets/fonts/m42.TTF"); |
|
} |
|
|
|
* { |
|
box-sizing: border-box; |
|
} |
|
|
|
body { |
|
background-image: url("/assets/img/background.png"); |
|
font-family: 'M42'; |
|
font-size: 7px; |
|
margin: 0px; |
|
padding: 0px; |
|
} |
|
|
|
/* Main */ |
|
.container { |
|
color: white; |
|
background-color: rgba(0, 0, 0, 0.726); |
|
display: flex; |
|
margin: 10px; |
|
width: fit-content; |
|
margin: auto; |
|
margin-top: 10px; margin-bottom: 30px; |
|
flex-direction: column; |
|
align-items: center; |
|
border: 4px solid rgba(68, 68, 68, 0.575); |
|
} |
|
|
|
.max-container { |
|
background-color: rgba(0, 0, 0, 0.726); |
|
color: white; |
|
display: flex; |
|
margin: 10px; |
|
width: 95%; |
|
margin: auto; |
|
margin-top: 10px; margin-bottom: 30px; |
|
flex-direction: column; |
|
align-items: center; |
|
border: 4px solid rgba(68, 68, 68, 0.575); |
|
} |
|
|
|
.con-title { |
|
font-size: 15px; |
|
border-bottom: 2px solid black; |
|
} |
|
|
|
.btn { |
|
padding: 10px; |
|
font-size: 8px; |
|
font-family: 'M42'; |
|
color: white; |
|
border: none; |
|
border-radius: 10px; |
|
} |
|
|
|
.btn-val { |
|
background-color: rgba(0, 0, 255, 0.637); |
|
} |
|
|
|
.btn-cancel { |
|
background-color: rgba(255, 0, 0, 0.699); |
|
} |
|
|
|
/*footer*/ |
|
footer { |
|
position: fixed; |
|
width: 100%; |
|
bottom: 0; |
|
display: flex; |
|
justify-content: center; |
|
background-color: var(--second-back-color); |
|
color: white; |
|
} |
|
|
|
/*nav bar*/ |
|
.nav-nav { |
|
--nav-img-width: 75px; |
|
background-color: var(--second-back-color); |
|
display: flex; |
|
justify-content: space-between; |
|
align-items: center; |
|
padding: 10px 10px 10px 10px; |
|
} |
|
|
|
.nav-nav .nav-brand { |
|
display: flex; |
|
justify-content: center; |
|
align-items: center; |
|
} |
|
|
|
.nav-nav .nav-brand img { |
|
width: var(--nav-img-width); |
|
} |
|
|
|
.nav-nav .nav-links { |
|
--links-color: rgb(255, 255, 255); |
|
--links-backcolor: rgb(0, 0, 0); |
|
--links-border-color: rgb(255, 255, 255); |
|
height: 70%; |
|
display: flex; |
|
justify-content: space-between; |
|
} |
|
|
|
.nav-link { |
|
margin-right: 10px; |
|
background-color: var(--links-backcolor); |
|
color: var(--links-color); |
|
border: 4px solid var(--links-border-color); |
|
list-style: none; |
|
display: flex; |
|
justify-content: center; |
|
align-items: center; |
|
box-shadow: 3px 2px white; |
|
} |
|
|
|
.stats { |
|
color: white; |
|
} |
|
|
|
/* General */ |
|
.smooth { |
|
padding: 5px; |
|
padding-left: 10px; |
|
padding-right: 10px; |
|
border-radius: 5px; |
|
} |
|
|
|
.in-big { |
|
font-family: 'M42'; |
|
font-size: 6px; |
|
padding: 5px; |
|
width: 100%; |
|
margin-bottom: 10px; |
|
border-radius: 5px; |
|
border: none; |
|
} |
|
|
|
.errors p { |
|
background-color: rgba(255, 56, 56, 0.733); |
|
border: 3px solid rgb(255, 111, 111); |
|
padding: 10px; |
|
color: white; |
|
border-radius: 5px; |
|
text-align: center; |
|
} |
|
|
|
/* Modal */ |
|
.ext-modal { |
|
background-color: rgba(255, 255, 255, 0.767); |
|
border-radius: 10px; |
|
padding: 50px; |
|
} |
|
|
|
.my-modal { |
|
display: flex; |
|
flex-direction: column; |
|
align-items: center; |
|
} |
|
|
|
.modal-title { |
|
font-size: 15px; |
|
margin-bottom: 40px; |
|
} |
|
|
|
.show-token { |
|
width: fit-content; |
|
border: 2px solid black; |
|
border-radius: 10px; |
|
padding: 30px; |
|
font-size: 5px; |
|
white-space:pre-wrap; |
|
word-break:break-word; |
|
} |
|
|
|
.my-modal #timer { |
|
text-align: center; |
|
border: 1px solid black; |
|
border-radius: 10px; |
|
width: 10%; |
|
padding: 5px; |
|
margin-bottom: 10px; |
|
} |
|
|
|
#canvas { |
|
border-radius: 10px; |
|
} |