You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Scripted/View/src/CSS/Enigme.css

143 lines
2.4 KiB

@font-face {
font-family: Fauna;
src: url("../../assets/fonts/Fauna.ttf");
}
@font-face {
font-family: Equinox;
src: url("../../assets/fonts/Equinox.otf");
}
body {
min-height: 100vh;
font-family: "Fauna", sans-serif;
color: white;
scroll-behavior: smooth;
height: 100vh;
background-color: #050E15;
}
p,
li,
button,
ul {
margin: 0;
padding: 0;
line-height: normal;
font-family: "Fauna", sans-serif;
font-size: 14px;
line-height: 20px;
letter-spacing: 0.8px;
}
a{
color: white;
cursor: pointer;
text-decoration: none !important;
font-family: Equinox, sans-serif;
}
a:hover{
color: #44fff6;
transition: all 0.4s ease-in-out;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
}
/***** Text CSS *****/
p{
font-family: "Fauna", sans-serif;
font-size: 14px;
line-height: 20px;
letter-spacing: 0.8px;
}
h1, h2, h3, h4, h5, h6 {
font-family: "Equinox", sans-serif;
}
/***** End Text CSS *****/
/***** Editor + Console CSS *****/
#editor {
width: 100%;
min-height: 80vh;
height: auto;
}
#console {
font-family: DejaVu Sans Mono, monospace;
font-size: 0.8rem;
letter-spacing: 1px;
background-color: #222831;
resize: none;
color: #fff;
border: 1px solid #44fff6;
box-shadow: 0 0 1px #fff,
0 0 1px #fff,
0 0 5px #44fff6,
0 0 5px #44fff6,
inset 0 0 5px #44fff6;
}
/***** End Editor + Console CSS *****/
/* Buttons */
.btn{
position: relative;
width: 130px;
height: 60px;
background: transparent;
}
.btn:before, .btn:after{
content: "";
position: absolute;
inset: 0;
transition: 0.5s;
background: #f00;
}
.btn:nth-child(1):before, .btn:nth-child(1):after{
background: linear-gradient(45deg, #00ccff, #0e1538, #d400d4);
}
.btn:nth-child(2):before, .btn:nth-child(2):after{
background: linear-gradient(45deg, #d400d4, #0e1538, #fb5942);
}
.btn:hover:before{
inset: -3px;
}
.btn:hover:after{
inset: -3px;
filter: blur(10px);
}
.btn span{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #0e1538;
z-index: 10;
display: flex;
justify-content: center;
align-items: center;
text-transform: uppercase;
color: #fff;
font-family: "Equinox", sans-serif;
font-size: 1.2rem;
}
#next-enigme{
font-family: "Equinox", sans-serif;
font-size: 1.2rem;
}