64 lines
1.1 KiB
CSS
64 lines
1.1 KiB
CSS
#fourohfour {
|
|
color: #FFF;
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
background-color: #222328;
|
|
cursor: default;
|
|
|
|
-webkit-touch-callout: none;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
#first {
|
|
font-size: 20vh;
|
|
margin: auto;
|
|
text-align: center;
|
|
|
|
-webkit-filter: drop-shadow(7px 7px 5px #111);
|
|
filter: drop-shadow(7px 7px 5px #111);
|
|
}
|
|
|
|
#second {
|
|
font-size: 5vh;
|
|
font-weight: 200;
|
|
margin: auto;
|
|
margin-top: 5%;
|
|
margin-bottom: 7%;
|
|
text-align: center;
|
|
|
|
-webkit-filter: drop-shadow(7px 7px 5px #111);
|
|
filter: drop-shadow(7px 7px 5px #111);
|
|
}
|
|
|
|
#third {
|
|
background-color: auto;
|
|
border: 1px solid white;
|
|
border-radius: 6px;
|
|
color: white;
|
|
cursor: pointer;
|
|
font-size: 2.5vh;
|
|
font-weight: 100;
|
|
margin: auto;
|
|
padding: 1vh 2vh 1vh 2vh;
|
|
text-align: center;
|
|
width: 15vh;
|
|
}
|
|
|
|
#third:hover {
|
|
background-color: rgba(0, 0, 0, 0.15);
|
|
transition: 0.5s;
|
|
}
|
|
|
|
#foot {
|
|
color: #888;
|
|
font-size: 2vh;
|
|
font-weight: 200;
|
|
width: 100%;
|
|
text-align: center;
|
|
position: absolute;
|
|
bottom: 0;
|
|
} |