You are on page 1of 5

*{

margin: 0;
padding: 0;
}

/* make body full page */


html, body {
margin: 0;
height: 100%;
text-align:center;
overflow: hidden;
cursor: pointer;
}

@font-face {
font-family: 'Main';
src: url(fonts/Main.woff);
}
@font-face {
font-family: 'Mission';
src: url(fonts/Mission.woff);
}
@font-face {
font-family: 'Meniu';
src: url(fonts/Meniu.ttf);
}

.menu {
position: absolute;
bottom: 50%;
right: 20%;

list-style: none;
margin: 50px auto;
width: 0px;
}

.menu > li {
background: #2f3b47;
float: left;
position: relative;
}

.menu a {
display: block;
color: #fff;
text-decoration: none;
font-family: Meniu, sans-serif;
font-size: 14px;
}

.choices {
position: absolute;
width: 200px;
left: 50%;
margin-left: -100px;
transform-origin: left top;
max-height: 50px;
}

14
.choices li {
background-color: #2f3b47;
overflow: hidden;
}

.choices > li > a {


padding: 1em 2em;
}

.choices > li::after {


content: '';
position: absolute;
top: -125%;
height: 100%;
width: 100%;
box-shadow: 0 0 50px rgba(0, 0, 0, .9);
}

.choices > li:nth-child(odd){


transform: skewX(-25deg) translateX(0);
}

.choices > li:nth-child(odd) > a {


transform: skewX(25deg);
}

.choices > li:nth-child(odd)::after {


right: -50%;
transform: skewX(-25deg) rotate(3deg);
}

.choices > li:nth-child(even){


transform: skewX(25deg) translateX(0);
}

.choices > li:nth-child(even) > a {


transform: skewX(-25deg);
}

.choices > li:nth-child(even)::after {


left: -50%;
transform: skewX(25deg) rotate(3deg);
}

.choices li:nth-child(odd).selected {
transform: skewX(-25deg) translateX(10px);
background: #4c1db8;
}

.choices li:nth-child(even).selected {
transform: skewX(25deg) translateX(10px);
background: #4c1db8;
}

.choices li {
transition: .2s ease all;
}

.desc {
transform: skewX(-15deg) translateX(0);

15
background: #2f3b47;

position: absolute;
top: 50%;
right: 28%;
}

.desc span.inside-desc {
padding: 1em 2em;
display: block;
color: #fff;
text-decoration: none;
font-family: Meniu, sans-serif;
font-size: 14px;
transform: skewX(15deg);
max-width: 250px;
}

/* wprompt */
.wprompt{
background-color: #2f3b47;
font-family: 'Meniu', sans-serif;
box-shadow: 1px 1px 18px 1px #000000;
color: white;
width: 300px;
height: 200px;
border-radius: 20px 0px 20px 0px;
display: flex;
padding: 8px;
flex-direction: column;
cursor: pointer;
}

.wprompt h1{
font-size: 12px;
font-family: 'Meniu', sans-serif;
text-transform: uppercase;
}
/* FlorinelComan a fost aici <3 /*
/* https://i.imgur.com/BlVTsnl.jpg */
/* https://i.imgur.com/BlVTsnl.png */
.wprompt textarea{
outline: none !important;
background-image: url(https://i.imgur.com/BlVTsnl.png);
font-family: 'Meniu', sans-serif;
color: white;
width: 400px;
height: 200px;
border: 1px solid rgba(34, 6, 99, 0.70);
box-shadow: inset 1px 1px 18px 1px #000000;
border-radius: 20px 0px 20px 0px;
flex: 1;
width: 100%;
padding: 12px;
resize: none;
box-sizing: border-box;
}

16
.wprompt textarea:focus{
outline: none !important;
}

.wprompt .help{
font-size: 12px;
font-family: 'Muli', sans-serif;
padding: 3px;
text-transform: uppercase;
}

/* request manager */
.request_manager{
position: absolute;
bottom: 0px;
right: 0px;
text-align: center;
}

.request_manager div{
margin-bottom: 0px;
}

.request_manager div > span{


background-color: rgba(0, 0, 0, 0.7);
font-family: 'Roboto', sans-serif;
border-radius: 5px;
font-size: 20px;
color: white;
margin-bottom: -1px;
font-weight: bold;
padding: 5px;
text-align: center;
}

.request_manager .yes{
font-family: 'Roboto', sans-serif;
padding-left: 15px;
color: rgb(0,255,0);
font-size: 1em;
text-transform: uppercase;
}

.request_manager .no{
font-family: 'Roboto', sans-serif;
color: rgb(255,0,0);
font-size: 1em;
text-transform: uppercase;
}

/* announce */

.announce{
position: absolute;
text-align: left;
top: 45px;
left: 50%;
width: 378px;
height: 266px;
padding: 25px 30px 30px 30px;

17
margin-left: 250px;
font-size: 1.1em;
text-shadow: 2px 2px black;
color: white;
display: none;
opacity: 0.90;
background-repeat: no-repeat;
}

.announce div {
width: 300px;
}

18

You might also like