mirror of
https://github.com/jhillyerd/inbucket.git
synced 2026-01-10 05:05:57 +00:00
117 lines
1.5 KiB
CSS
117 lines
1.5 KiB
CSS
html {
|
|
position: relative;
|
|
min-height: 100%;
|
|
}
|
|
|
|
body {
|
|
padding-top: 70px;
|
|
/* Margin bottom by footer height */
|
|
margin-bottom: 60px;
|
|
}
|
|
|
|
.mailbox-header {
|
|
text-align: center;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.footer {
|
|
position: absolute;
|
|
bottom: 0;
|
|
width: 100%;
|
|
/* Set the fixed height of the footer here */
|
|
height: 70px;
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
.container .text-muted {
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.message-controls {
|
|
padding: 10px 0;
|
|
}
|
|
|
|
#emailContent {
|
|
padding-bottom: 20px;
|
|
}
|
|
|
|
.message-header dl {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.message-header .dl-horizontal dt {
|
|
width: 60px;
|
|
}
|
|
|
|
.message-header .dl-horizontal dd {
|
|
margin-left: 70px;
|
|
}
|
|
}
|
|
|
|
.message-attachments {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.message-attachments ul {
|
|
margin: 0
|
|
}
|
|
|
|
#emailSubject {
|
|
border-bottom: 1px #606060 solid;
|
|
margin: 0;
|
|
width: 617px;
|
|
}
|
|
|
|
#emailBody {
|
|
color: #555;
|
|
margin-top: 15px;
|
|
}
|
|
|
|
.errors {
|
|
background-color: #ffa0a0;
|
|
color: #333;
|
|
padding: 5px 10px;
|
|
}
|
|
|
|
table.metrics {
|
|
}
|
|
|
|
.metrics th {
|
|
text-align: left;
|
|
width: 15em;
|
|
}
|
|
|
|
.metrics td.number {
|
|
width: 10em;
|
|
}
|
|
|
|
.metrics td.sparkline {
|
|
width: 200px;
|
|
}
|
|
|
|
#emailAttachments {
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
#emailAttachments th, #emailAttachments td {
|
|
text-align: left;
|
|
padding: 0 3px 3px 0;
|
|
}
|
|
|
|
#emailAttachments .fileName:before {
|
|
content: '\203A\00A0';
|
|
}
|
|
|
|
#emailAttachments a {
|
|
background: #8ac6dc;
|
|
color: #fff;
|
|
text-decoration: none;
|
|
padding: 0 5px;
|
|
}
|
|
|
|
#emailAttachments a:hover {
|
|
background: #becf74;
|
|
}
|
|
|