2025-01-23 23:12:54 +03:00

199 lines
3.5 KiB
CSS

@font-face {
font-family: "Monocraft";
src: url("/static/fonts/Monocraft.otf") format("opentype");
}
.simpletext {
font-family: Monocraft;
color: white;
text-align: center;
line-height: 2;
font-size: 1.1rem;
}
.header {
text-shadow: 1px 1px 2px red, 0 0 1em blue, 0 0 0.2em blue;
font-family: Monocraft;
color: white;
text-align: center;
}
.context {
font-family: Monocraft;
text-align: center;
color: rgba(225, 225, 225, 0.6);
}
.container {
display: flex;
flex-wrap: wrap;
}
.divv {
background-color: rgb(0 0 0 / 85%);
border: dashed rgba(225, 225, 225, 0.75);
border-width: 2px 3px;
border-radius: 2rem/2rem;
box-sizing: border-box;
margin-left: 2rem;
margin-top: 2rem;
}
.info {
width: 65%;
height: 20%;
padding: 1rem;
margin-left: 0rem;
border-color: #000000;
border-radius: 0;
border: none;
box-shadow: 1em 1em 0em 0px rgba(186, 65, 166, 0.7);
transition: 0.5s;
}
.info:hover {
box-shadow: 1.5em 1.5em 0em 0px rgba(186, 65, 166, 0.7);
padding: 1.5rem;
}
.info1 {
width: 45%;
height: 50%;
padding: 0.85rem;
margin-top: 3.5rem;
transition: 1s;
}
.info1:hover {
background-image: linear-gradient(to bottom, rgba(255, 0, 0, 0), rgba(186, 65, 166, 0.3));
}
.navigation{
width: 18%;
height: 65%;
padding: 0;
border-color: #000000;
border-radius: 0.7rem;
margin-right: 0rem;
left: calc(100% - 5rem);
position: relative;
transition: 0.5s;
display: flex;
flex-direction: row;
align-items: center;
}
.navigation:hover {
left: 85%;
}
.decore1 {
background-image: linear-gradient(to right, rgba(225, 225, 225, 0.8), rgba(225, 225, 225, 0.6));
width: 5.5%;
height: 85%;
margin: 0;
border-radius: 1rem;
}
.btn1 {
box-shadow: 0 5px 15px 0 #BA41A6;
transition: 0.5s;
background-color: #BA41A6;
padding: 1rem;
border-radius: 0.5rem;
margin-top: 0.7rem;
margin-bottom: 0.7rem;
}
.btn1 + .btn1 {
margin-left: 1rem;
}
.btn1:hover {
transform: translate(0,-3px);
box-shadow: 0 20px 40px 0 #BA41A6;
}
.btn2 {
text-shadow: 1px 1px 2px red, 0 0 1em blue, 0 0 0.2em blue;
margin-top: 1rem;
transition: 0.1s;
border-radius: 0.5rem;
margin: 0.5rem;
}
.btn2:hover {
background-color: rgba(186, 65, 166, 0.5);
padding: 0.5rem;
margin: 0;
}
.link {
box-shadow: 0 5px 15px 0 #BA41A6;
transition: 0.5s;
background-color: #BA41A6;
padding: 1rem;
border-radius: 0.5rem;
margin-top: 0.7rem;
margin-bottom: 0.7rem;
margin-left: 0;
}
.link:hover {
transform: translate(0,-3px);
box-shadow: 0 20px 40px 0 #BA41A6;
}
.navlink {
justify-content: center;
display: flex;
flex-wrap: wrap;
flex-direction: column;
margin-left: 1.5rem;
margin-top: 1rem;
}
.navbtn {
justify-content: center;
display: flex;
flex-wrap: wrap;
}
.helpimg {
max-width: 100%;
width: 3.5vw;
height: auto;
margin: 2rem;
bottom: 10vw;
position: relative;
box-shadow: 0.4em 0.4em 0em 0px rgba(0, 0, 0, 0.8);
transition: 0.5s;
border-radius: 1em;
background-color: rgba(0, 0, 0, 0);
}
.helpimg:hover {
box-shadow: 0.7em 0.7em 0em 0px rgba(0, 0, 0, 0.8);
transform: translate(0, 0.2em);
}
body {
background-image: url(/static/imgs/bg.gif);
width: 100vw;
height: 100vh;
margin: 0;
overflow: hidden;
background-size: cover;
}
a {
text-decoration: none;
font-family: Monocraft;
color: white;
}