1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-05 00:43:53 +00:00
Files
seahub/frontend/src/css/shared-file-view.css
2022-09-28 13:27:13 +08:00

99 lines
1.6 KiB
CSS

#wrapper {
height: 100%;
}
.shared-file-view-md {
height: 100%;
overflow-y: hidden;
}
.shared-file-view-md-header {
background: #f4f4f7;
height: 53px;
border-bottom: 1px solid #e8e8e8;
padding: 8px 16px 4px;
justify-content: space-between;
}
.shared-file-view-md-main {
height: calc(100% - 53px);
}
.shared-file-view-head {
width: 950px;
margin: 0 auto;
height: 60px;
display: flex;
align-items:center;
justify-content: space-between;
}
.shared-file-view-head h2 {
color: #222;
font-size: 1.4em;
margin-bottom: 0px;
font-weight: 400;
}
.shared-file-view-head .share-by {
margin: 0;
}
.shared-file-view-body {
height: calc(100% - 60px);
padding: 30px 0 15px;
background: #f4f4f4;
border: 1px solid #ededed;
overflow: auto;
}
.shared-file-view-body .article {
min-height: calc(100% - 15px);
background: #fff;
padding: 40px 60px;
margin: 0 340px 15px 40px;
border: 1px solid #e6e6dd;
}
.shared-file-view-body .article-no-outline {
max-width: 950px;
margin: 0 auto 15px;
}
.shared-file-view-body .seafile-markdown-outline {
width: 300px;
top: 145px;
bottom: 30px;
height: auto;
}
@media (max-width: 991.98px) {
.shared-file-view-head {
width: 100%;
padding: 10px 20px;
}
.shared-file-view-body .md-view {
width: 95%;
}
.shared-file-view-body .md-view {
padding: 55px 50px;
}
}
@media (max-width: 768px) {
.shared-file-view-body .md-view {
padding: 0 10px;
width: 100%;
}
.shared-file-view-body .md-view .article {
display: flex;
padding: 20px;
margin: 0;
}
.shared-file-view-body .seafile-markdown-outline {
display: none;
}
}