initail with home page from seat x-change
This commit is contained in:
@@ -0,0 +1,100 @@
|
||||
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: 0;
|
||||
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;
|
||||
box-shadow: 3px 3px 2px #888888;
|
||||
vertical-align: middle;
|
||||
line-height: 50px;
|
||||
font-size: 40px;
|
||||
}
|
||||
button {
|
||||
margin: 0;
|
||||
font-family: 'Open Sans Condensed', sans-serif;
|
||||
font-size: 20px;
|
||||
background-color: darkblue;
|
||||
color: white;
|
||||
height: 35px;
|
||||
width: 150px;
|
||||
padding: 0 5px 0 5px;
|
||||
border: none;
|
||||
box-shadow: 3px 3px 2px #888888;
|
||||
}
|
||||
button:hover {
|
||||
font-size: 19px;
|
||||
-moz-box-shadow: inset 0 0 10px #000000;
|
||||
-webkit-box-shadow: inset 0 0 10px #000000;
|
||||
box-shadow: inset 0 0 10px #000000;
|
||||
cursor: pointer;
|
||||
}
|
||||
Reference in New Issue
Block a user