Migration
This commit is contained in:
@@ -2,18 +2,71 @@
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.pagehead {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
height: 100vh;
|
||||
position: relative;
|
||||
background: #111;
|
||||
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;
|
||||
}
|
||||
|
||||
.mainh {
|
||||
color: white;
|
||||
font: "Overpass Mono", monospace;
|
||||
font-weight: 600;
|
||||
text-align: center;
|
||||
font-family: "Overpass Mono", monospace;
|
||||
font-weight: 700;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.
|
||||
|
Reference in New Issue
Block a user