streamupload/uploadpage/page.css
gitlab.com/pepa65 3e2fd5f302 Presentation
2022-09-13 02:17:37 +07:00

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:525px;
max-width:450px;
}
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:200px;
padding-right:10px;
text-align:right;
}
.right {
width:325px;
}
.shiftleft {
position:relative;
left:-95px;
}