NewsPen/static/css/content.css

44 lines
679 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 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);
}
.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 {
.pub-content {
height: 100%;
width: 100%;
position: fixed;
top: 0;
left: 0;
margin: 0;
z-index: 999999;
border: 0px;
box-shadow: none;
}
.btn-group, .footer {
display: none;
}
}