streamupload/uploadpage/page.css
2022-09-13 14:47:04 +07:00

58 lines
820 B
CSS
Executable File

input,select {
text-align:center;
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] {
text-align:center;
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:325px;
max-width:325px;
}
h1 {
text-align:center;
}
h4 {
text-align:center;
color:white;
background-color:red;
padding:.7em;
}
.user {
display:flex;
width:100%;
justify-content:space-between;
}
#logoff {
width:100px;
}