polaris-offices-viewer
Version:
147 lines (132 loc) • 2.51 kB
CSS
.hidden {
display: none;
}
.ppt-wrap pre {
width: 100%;
height: 360px;
overflow: scroll;
}
.ppt-wrap section{
border: solid 1px #d2d5d8;
background-color: #efefef;
border-radius: 10px;
margin-bottom: 30px;
position: relative;
overflow: hidden;
text-align: center;
}
.ppt-wrap section div.block {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
}
.ppt-wrap section div.content {
display: flex;
flex-direction: column;
/*
justify-content: center;
align-items: flex-end;
*/
}
.ppt-wrap section div.v-up {
justify-content: flex-start;
}
.ppt-wrap section div.v-mid {
justify-content: center;
}
.ppt-wrap section div.v-down {
justify-content: flex-end;
}
.ppt-wrap section div.h-left {
align-items: flex-start;
text-align: left;
}
.ppt-wrap section div.h-mid {
align-items: center;
text-align: center;
}
.ppt-wrap section div.h-right {
align-items: flex-end;
text-align: right;
}
.ppt-wrap section div.up-left {
justify-content: flex-start;
align-items: flex-start;
text-align: left;
}
.ppt-wrap section div.up-center {
justify-content: flex-start;
align-items: center;
}
.ppt-wrap section div.up-right {
justify-content: flex-start;
align-items: flex-end;
}
.ppt-wrap section div.center-left {
justify-content: center;
align-items: flex-start;
text-align: left;
}
.ppt-wrap section div.center-center {
justify-content: center;
align-items: center;
}
.ppt-wrap section div.center-right {
justify-content: center;
align-items: flex-end;
}
.ppt-wrap section div.down-left {
justify-content: flex-end;
align-items: flex-start;
text-align: left;
}
.ppt-wrap section div.down-center {
justify-content: flex-end;
align-items: center;
}
.ppt-wrap section div.down-right {
justify-content: flex-end;
align-items: flex-end;
}
.ppt-wrap section span.text-block {
/* display: inline-block; */
}
li.slide {
margin: 10px 0px;
font-size: 18px;
}
div.footer {
text-align: center;
}
.ppt-wrap section table {
position: absolute;
}
.ppt-wrap section table,
.ppt-wrap section th,
.ppt-wrap section td {
border: 1px solid black;
}
.ppt-wrap section svg.drawing {
position: absolute;
overflow: visible;
}
.fileUpload {
position: relative;
overflow: hidden;
}
.fileUpload input.upload {
position: absolute;
top: 0;
right: 0;
margin: 0;
padding: 0;
font-size: 20px;
cursor: pointer;
opacity: 0;
filter: alpha(opacity=0);
}
#pptx-thumb {
min-width: 240px;
height: 180px;
}