103 lines
1.6 KiB
CSS
103 lines
1.6 KiB
CSS
/* modal based on: http://www.w3schools.com/howto/howto_css_modals.asp */
|
|
|
|
.modal {
|
|
display: none;
|
|
position: fixed;
|
|
top: 80px;
|
|
left: 256px;
|
|
width: calc(100% - 256px); /* Full width */
|
|
height: calc(100% - 80px); /* Full height */
|
|
background-color: rgb(0,0,0); /* Fallback color */
|
|
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
|
|
overflow-y: auto;
|
|
}
|
|
|
|
/* Modal Content/Box */
|
|
.modal-content {
|
|
margin: 5% auto;
|
|
width: 70%; /* Could be more or less, depending on screen size */
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.modal-close {
|
|
color: #aaa;
|
|
float: right;
|
|
font-size: 28px;
|
|
font-weight: bold;
|
|
margin: auto;
|
|
}
|
|
|
|
.modal-close:hover,
|
|
.modal-close:focus {
|
|
color: black;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.modal-content img {
|
|
max-height: 100%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.post-header h4 {
|
|
font-size: 20pt;
|
|
}
|
|
|
|
.post-content {
|
|
margin: 30px auto;
|
|
width: 90%;
|
|
}
|
|
|
|
.commentfield {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.commentfield textarea {
|
|
width: 100%;
|
|
}
|
|
|
|
.comment {
|
|
padding-top: 10px;
|
|
padding-bottom: 10px;
|
|
border-top: 1px solid #4CAF50;
|
|
}
|
|
|
|
.commentinfo {
|
|
font-size: 10pt;
|
|
}
|
|
|
|
.commentcontent {
|
|
margin: 5px auto;
|
|
width: 95%;
|
|
}
|
|
|
|
.nietslecht-text {
|
|
font-family: Impact, Anton, sans-serif;
|
|
text-shadow: -1px 0 1px black, 0 1px 1px black, 1px 0 1px black, 0 -1px 1px black;
|
|
}
|
|
|
|
.nietslecht {
|
|
}
|
|
|
|
.nietslecht img {
|
|
vertical-align: middle;
|
|
height: 24px;
|
|
width: 24px;
|
|
}
|
|
|
|
.deleteButton {
|
|
background-color: firebrick;
|
|
|
|
}
|
|
|
|
.deleteButton i {
|
|
display: inline-block;
|
|
}
|
|
|
|
.deleteButton:hover span {
|
|
display: inline-block;
|
|
}
|
|
|
|
.deleteButton span {
|
|
display: none;
|
|
} |