67 lines
886 B
CSS
Executable File
67 lines
886 B
CSS
Executable File
input,select {
|
|
width:100%;
|
|
padding:12px 20px;
|
|
margin:0;
|
|
display:inline-block;
|
|
border:1px solid #ccc;
|
|
border-radius:4px;
|
|
box-sizing:border-box;
|
|
font-size:16px;
|
|
}
|
|
|
|
input[type=submit] {
|
|
width:100%;
|
|
background-color:#4CAF50;
|
|
color:white;
|
|
padding:14px 20px;
|
|
margin:8px 0;
|
|
border:none;
|
|
border-radius:4px;
|
|
cursor:pointer;
|
|
font-size:16px
|
|
}
|
|
body {
|
|
margin:0;
|
|
font-family:sans-serif;
|
|
font-size:16px;
|
|
}
|
|
.container {
|
|
display:flex;
|
|
flex-direction:column;
|
|
justify-content:center;
|
|
align-items:center;
|
|
height:100vh;
|
|
}
|
|
.incontainer {
|
|
width:550px;
|
|
max-width:550px;
|
|
}
|
|
p {
|
|
flex-wrap:nowrap;
|
|
}
|
|
h4 {
|
|
text-align:center;
|
|
color:red;
|
|
background-color:light-red;
|
|
padding:.7em;
|
|
}
|
|
table {
|
|
width:100%;
|
|
}
|
|
.single {
|
|
margin:auto;
|
|
width:325px;
|
|
}
|
|
.left {
|
|
width:225px;
|
|
padding-right:10px;
|
|
text-align:right;
|
|
}
|
|
.right {
|
|
width:325px;
|
|
}
|
|
.shiftleft {
|
|
position:relative;
|
|
left:-95px;
|
|
}
|