71 lines
1.2 KiB
CSS
71 lines
1.2 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: 12vh;
|
|
|
|
transition: 0.5s;
|
|
}
|
|
|
|
#third:hover {
|
|
background-color: rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
#third h4 {
|
|
font-weight: 100;
|
|
margin-right: 0.5vh;
|
|
display: inline;
|
|
}
|
|
|
|
#foot {
|
|
color: #888;
|
|
font-size: 2vh;
|
|
font-weight: 200;
|
|
width: 100%;
|
|
text-align: center;
|
|
position: absolute;
|
|
bottom: 0;
|
|
} |