2025-01-23 00:19:58 +03:00

164 lines
2.8 KiB
CSS

@font-face {
font-family: "Monocraft";
src: url("/static/fonts/Monocraft.otf") format("opentype");
}
.simpletext {
font-family: Monocraft;
color: white;
text-align: center;
}
.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: 1rem;
border-color: #000000;
border-radius: 0;
border: none;
margin-right: 0rem;
left: calc(100% - 4rem);
position: relative;
transition: 0.5s;
}
.navigation:hover {
left: 82%;
}
.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;
}
.navbtn {
justify-content: center;
display: flex;
flex-wrap: wrap;
}
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;
}