babybluesbot / feedback.css
bellayu's picture
Upload 12 files
4963d50
raw
history blame contribute delete
985 Bytes
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: lavender;
color: black;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
padding: 0;
margin: 0;
}
.container{
position:absolute;
margin-top: 350px;
left: 50%;
transform: translate(-50%, -50%);
padding: 25px;
font-size: 25px;
}
input{
margin-top: 15px;
outline: none;
border: none;
padding: 5px;
width: 600px;
height: 50px;
font-size: 15px;
}
button{
margin-top: 40px;
width:150px;
color:white;
background-color:black;
font-size: 20px;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-weight: 800;
}
.row {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-top: 30px;
}
.col {
-ms-flex: 50%;
flex: 50%;
}
a{
text-decoration: none;
color: white;
}