CoverView/src/components/ConfigCover.css
2020-08-20 17:36:30 +05:30

76 lines
975 B
CSS

body {
background-color: #f2f2f2;
}
.main-container {
/* width: auto;*/
/* justify-content: center;
align-items: center; */
display: flex;
flex-direction: row;
}
.tagline {
max-width: 300px;
}
.inputData {
display: flex;
flex-direction: column;
align-items: center;
padding:35px;
}
.inputdata::-webkit-scrollbar {
display: none;
}
.blog-cover {
display: flex;
flex-direction: column;
align-items: center;
margin:30px;
}
label {
margin: 5px;
}
input {
margin: 4px;
}
input[type=number]{
width:40px;
}
.custom-range::-webkit-slider-thumb{
background-color: #00cc7a;
}
.input-sm{
width:80px;
}
.input-md{
width:120px;
}
.inputTitle {
border-radius: 4px;
padding-left: 20px;
}
.reset-btn {
background-color: #00e68a;
margin-top: 10px;
box-shadow: 4px 4px #676683;
font-size: 18px;
padding:6px;
}
@media screen and (max-width: 600px) {
.main-container {
display: flex;
flex-direction: column;
}
.blog-cover{margin:0px;}
}