NewsPen/static/css/content.css

65 lines
1014 B
CSS
Raw Normal View History

2017-12-01 01:37:39 -07:00
.tile-bin {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
padding: 5px;
2017-12-01 23:47:52 -07:00
margin: 10mm 10mm 10mm 10mm;
2017-12-01 01:37:39 -07:00
}
.pub-content {
border: 1px solid grey;
margin: 0px auto;
box-shadow: 5px 5px 15px -3px rgba(0,0,0,0.75);
2017-12-01 23:47:52 -07:00
margin-bottom: 20px;
overflow: auto;
2017-12-01 23:47:52 -07:00
}
.page-safe-line div {
display: none;
background-color: grey;
position: relative;
}
.page-safe-line .bottom {
height: 1px;
left: 0;
right: 0;
2017-12-01 01:37:39 -07:00
}
.tile {
margin: 5px;
2017-12-01 01:37:39 -07:00
}
.tile-html {
font-family: sans-serif;
2017-12-01 20:47:00 -07:00
min-height: 10px;
2017-12-01 01:37:39 -07:00
}
.tile-html img {
max-width: 100%;
}
2017-12-01 01:37:39 -07:00
@media print {
2017-12-01 23:47:52 -07:00
@page {
margin: 10mm 10mm 10mm 10mm;
}
.tile-bin {
margin: 0px;
overflow: visible;
}
2017-12-01 01:37:39 -07:00
.pub-content {
z-index: 999999;
border: 0px;
box-shadow: none;
2017-12-01 23:47:52 -07:00
overflow: visible;
2017-12-01 01:37:39 -07:00
}
.btn-group, .footer {
display: none;
}
2017-12-01 23:47:52 -07:00
.page-safe-line {
display: none;
}
2017-12-01 01:37:39 -07:00
}