mirror of
https://github.com/Kenshin/simpread.git
synced 2026-01-25 14:28:34 +00:00
43 lines
599 B
CSS
43 lines
599 B
CSS
|
|
.header {
|
|
background-color: rgb(63, 81, 181);
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
.custom {
|
|
position: relative;
|
|
|
|
display: flex;
|
|
flex-flow: row;
|
|
|
|
top: 65px;
|
|
}
|
|
|
|
.custom .property {
|
|
margin: 20px;
|
|
width: 450px;
|
|
}
|
|
|
|
.custom .property h1 {
|
|
margin-bottom: 20px;
|
|
font-size: 17px;
|
|
}
|
|
|
|
.custom .property group {
|
|
display: block;
|
|
}
|
|
|
|
.custom .property group:not(:last-child) {
|
|
margin-bottom: 25px;
|
|
}
|
|
|
|
.custom .preview {
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
margin: 20px 20px 0 0;
|
|
width: 100%;
|
|
|
|
box-shadow: 0 2px 5px rgba(0, 0, 0, .26);
|
|
} |