implemented construction page.
This commit is contained in:
+16
-6
@@ -7,10 +7,20 @@ body {
|
|||||||
background-color: black;
|
background-color: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
.center-abs {
|
.card {
|
||||||
position: absolute;
|
margin: 20% auto;
|
||||||
left: 50%;
|
width: 60%;
|
||||||
top: 50%;
|
padding-top: 50px;
|
||||||
-webkit-transform: translate(-50%, -50%);
|
padding-bottom: 50px;
|
||||||
transform: translate(-50%, -50%);
|
|
||||||
|
border: 1px solid white;
|
||||||
|
border-radius: 18px;
|
||||||
|
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 980px) {
|
||||||
|
.card {
|
||||||
|
margin: 75% auto;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+17
-2
@@ -1,4 +1,19 @@
|
|||||||
h1 {
|
h1 {
|
||||||
font-size: clamp(4vw, 6vw, 8vw);
|
font-size: 6vw;
|
||||||
color: #00ee00;
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
font-size: 1vw;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 980px) {
|
||||||
|
h1 {
|
||||||
|
font-size: 4vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
font-size: 2vw;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user