2020-11-04 11:30:38 +03:00
|
|
|
*, ::after, ::before {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2020-11-06 17:51:15 +03:00
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2020-11-04 11:30:38 +03:00
|
|
|
.pagehead {
|
|
|
|
width: 100%;
|
2020-11-06 17:51:15 +03:00
|
|
|
height: 100vh;
|
|
|
|
position: relative;
|
2020-11-04 11:30:38 +03:00
|
|
|
background: #111;
|
2020-11-06 17:51:15 +03:00
|
|
|
display: flex;
|
|
|
|
/*align-items: center;
|
|
|
|
justify-content: center;*/
|
|
|
|
flex-direction: column;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pagehead-inner {
|
|
|
|
position: inherit;
|
|
|
|
margin: 0;
|
|
|
|
width: 456px;
|
|
|
|
height: 600px;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
margin-left: -228px;
|
|
|
|
margin-top: -300px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pagehead-inner > p {
|
|
|
|
color: white;
|
|
|
|
font-family: "Overpass Mono", monospace;
|
|
|
|
font-weight: 300;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-container {
|
|
|
|
display: flex;
|
|
|
|
position: inherit;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-container button {
|
|
|
|
width: 69px;
|
|
|
|
height: 69px;
|
|
|
|
margin: 10px;
|
|
|
|
background: #222;
|
|
|
|
color: white;
|
|
|
|
border-radius: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-container button:hover {
|
|
|
|
transform: scale(1.2);
|
|
|
|
-webkit-transition: transform 0.5s ease-in-out;
|
|
|
|
background: white;
|
|
|
|
color: green;
|
2020-11-04 11:30:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.mainh {
|
|
|
|
color: white;
|
2020-11-06 17:51:15 +03:00
|
|
|
font-family: "Overpass Mono", monospace;
|
|
|
|
font-weight: 700;
|
|
|
|
margin: 0;
|
2020-11-04 11:30:38 +03:00
|
|
|
}
|
2020-11-06 17:51:15 +03:00
|
|
|
|
|
|
|
.
|