91 lines
1.5 KiB
CSS
91 lines
1.5 KiB
CSS
html {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
position: relative;
|
|
}
|
|
title {
|
|
color: blue;
|
|
}
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
position: absolute;
|
|
height: 100%;
|
|
width: 100%;
|
|
background-image: url(pics/indexbg.jpg);
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
}
|
|
|
|
div.input {
|
|
margin: 0;
|
|
position: absolute;
|
|
padding: 0;
|
|
width: 100%;
|
|
height: 500px;
|
|
}
|
|
|
|
p.title {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100px;
|
|
width: 70%;
|
|
text-align: center;
|
|
position: absolute;
|
|
top: 12%;
|
|
left: 50%;
|
|
margin-right: -50%;
|
|
transform: translate(-50%, -50%);
|
|
font-family: 'Open Sans Condensed', sans-serif;
|
|
font-size: 150px;
|
|
color: papayawhip;
|
|
}
|
|
font.title {
|
|
margin: 0;
|
|
padding-top: 5px;
|
|
height: 100px;
|
|
width: 70%;
|
|
text-align: center;
|
|
position: absolute;
|
|
top: 212%;
|
|
left: 50%;
|
|
margin-right: -50%;
|
|
transform: translate(-50%, -50%);
|
|
font-family: 'Courier New';
|
|
font-size: 20px;
|
|
color: yellow;
|
|
}
|
|
|
|
p.inputs {
|
|
color: dimgray;
|
|
margin: 0;
|
|
padding: 5px;
|
|
border-radius: 8px;
|
|
background-color: papayawhip;
|
|
height: 110px;
|
|
width: 100%;
|
|
text-align: center;
|
|
position: fixed;
|
|
|
|
top: 70%;
|
|
left: 50%;
|
|
margin-right: -50%;
|
|
transform: translate(-50%, -50%);
|
|
font-family: 'Open Sans Condensed', sans-serif;
|
|
vertical-align: middle;
|
|
line-height: 50px;
|
|
font-size: 40px;
|
|
}
|
|
|
|
button {
|
|
padding: 0;
|
|
border: none;
|
|
background-color: none;
|
|
|
|
}
|
|
button:hover {
|
|
border: none;
|
|
}
|