mirror of
https://github.com/woodchen-ink/CoverView.git
synced 2025-07-18 14:01:56 +08:00
37 lines
582 B
CSS
37 lines
582 B
CSS
body{background-color: #f2f2f2;}
|
|
|
|
.main-container{
|
|
width:auto;
|
|
justify-content: center;
|
|
align-items: center;
|
|
display:flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.inputData{
|
|
display:flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding:15px;
|
|
}
|
|
.blog-cover{
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
label{margin:5px;}
|
|
input{margin:4px;}
|
|
|
|
.inputTitle{
|
|
height:40px;
|
|
width:auto;
|
|
border-radius:4px;
|
|
padding-left:20px;
|
|
}
|
|
|
|
@media screen and (max-width:600px){
|
|
.main-container{
|
|
display:flex;
|
|
flex-direction:column;
|
|
}
|
|
|
|
} |