mailcatcher/public/stylesheets/application.css

248 lines
6.7 KiB
CSS
Raw Normal View History

2011-05-31 12:40:13 -04:00
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
2011-05-28 02:21:11 -04:00
font-size: 100%;
2011-05-31 12:40:13 -04:00
font: inherit;
2011-05-28 02:21:11 -04:00
vertical-align: baseline; }
2011-05-27 09:46:12 -04:00
2011-05-28 02:21:11 -04:00
body {
2011-05-31 12:40:13 -04:00
line-height: 1; }
2011-05-28 02:21:11 -04:00
ol, ul {
list-style: none; }
table {
2011-05-31 12:40:13 -04:00
border-collapse: collapse;
border-spacing: 0; }
2011-05-28 02:21:11 -04:00
caption, th, td {
text-align: left;
2011-05-31 12:40:13 -04:00
font-weight: normal;
vertical-align: middle; }
q, blockquote {
quotes: none; }
q:before, q:after, blockquote:before, blockquote:after {
content: "";
content: none; }
a img {
border: none; }
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block; }
2011-05-28 02:21:11 -04:00
html, body {
width: 100%;
height: 100%; }
2011-05-27 09:46:12 -04:00
body {
2011-05-28 02:21:11 -04:00
display: -moz-box;
2011-05-31 12:40:13 -04:00
display: -webkit-box;
2011-05-28 02:21:11 -04:00
display: box;
-moz-box-orient: vertical;
2011-05-31 12:40:13 -04:00
-webkit-box-orient: vertical;
box-orient: vertical;
background: #eeeeee;
color: black;
2011-05-31 12:40:13 -04:00
font-size: 12px;
font-family: Helvetica, sans-serif; }
body body {
font-size: 75%;
line-height: 2em; }
body html > body {
font-size: 12px; }
body > header {
overflow: hidden;
*zoom: 1;
border-bottom: 1px solid #cccccc; }
2011-05-31 12:40:13 -04:00
body > header h1 {
float: left;
padding: 6px;
font-size: 18px;
font-weight: bold; }
body > header h1 a {
color: black;
text-decoration: none;
text-shadow: 0 1px 0 white;
-moz-transition-property: 0.1s ease;
-webkit-transition-property: 0.1s ease;
-o-transition-property: 0.1s ease;
transition-property: 0.1s ease;
-moz-transition-duration: 1s;
-webkit-transition-duration: 1s;
-o-transition-duration: 1s;
transition-duration: 1s; }
body > header h1 a:hover {
color: #4183c4; }
2011-05-31 12:40:13 -04:00
body > header nav {
border-left: 1px solid #cccccc;
border-right: 1px solid white; }
2011-05-31 12:40:13 -04:00
body > header nav.project {
float: left; }
body > header nav.app {
float: right; }
body > header nav li {
2011-05-31 12:59:12 -04:00
display: inline; }
body > header nav li a {
display: inline-block;
float: left;
padding: 9px;
border-left: 1px solid white;
border-right: 1px solid #cccccc;
background: #eeeeee;
color: #666666;
2011-05-31 12:59:12 -04:00
font-weight: bold;
text-decoration: none;
text-shadow: 0 1px 0 white; }
body > header nav li a:hover {
background: white; }
2011-05-31 12:59:12 -04:00
body > header nav li a:active {
margin: 1px -1px -1px 1px;
-moz-box-shadow: none;
-webkit-box-shadow: none;
-o-box-shadow: none;
box-shadow: none; }
2011-05-31 12:40:13 -04:00
#messages {
width: 100%;
height: 10em;
overflow: auto;
background: white;
border-top: 1px solid white;
border-bottom: 1px solid #cccccc; }
2011-05-31 12:40:13 -04:00
#messages table {
width: 100%; }
#messages table thead tr {
background: #eeeeee;
color: #333333; }
2011-05-31 12:40:13 -04:00
#messages table thead tr th {
padding: 0.25em;
2011-05-31 12:40:13 -04:00
font-weight: bold;
color: #666666;
2011-05-31 12:40:13 -04:00
text-shadow: 0 1px 0 white; }
#messages table tbody tr:nth-child(even) {
background: #f0f0f0; }
#messages table tbody tr.selected {
background: Highlight;
color: HighlightText; }
#messages table tbody tr td {
padding: 0.25em; }
2011-05-28 02:21:11 -04:00
2011-05-27 09:46:12 -04:00
#message {
2011-05-28 02:21:11 -04:00
display: -moz-box;
2011-05-31 12:40:13 -04:00
display: -webkit-box;
2011-05-28 02:21:11 -04:00
display: box;
-moz-box-orient: vertical;
2011-05-31 12:40:13 -04:00
-webkit-box-orient: vertical;
2011-05-28 02:21:11 -04:00
box-orient: vertical;
-moz-box-flex: 1;
-webkit-box-flex: 1;
2011-05-31 12:40:13 -04:00
box-flex: 1;
border-top: 1px solid white; }
2011-05-31 12:40:13 -04:00
#message > header {
overflow: hidden;
*zoom: 1; }
#message > header .metadata {
overflow: hidden;
*zoom: 1;
padding: 0.5em; }
2011-05-31 12:40:13 -04:00
#message > header .metadata dt, #message > header .metadata dd {
padding: 0.25em; }
2011-05-31 12:40:13 -04:00
#message > header .metadata dt {
float: left;
clear: left;
width: 8em;
margin-right: 0.5em;
2011-05-31 12:40:13 -04:00
text-align: right;
font-weight: bold;
color: #666666;
2011-05-31 12:40:13 -04:00
text-shadow: 0 1px 0 white; }
#message > header .metadata dd.subject {
font-weight: bold; }
#message > header .metadata .attachments {
display: none; }
#message > header .metadata .attachments ul {
display: inline; }
#message > header .metadata .attachments ul li {
display: -moz-inline-box;
-moz-box-orient: vertical;
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
margin-right: 0.5em; }
2011-05-31 12:40:13 -04:00
#message > header .metadata .attachments ul li {
*display: inline; }
#message > header .views ul {
padding: 0 0.5em;
border-bottom: 1px solid #999999; }
2011-05-31 12:40:13 -04:00
#message > header .views .tab {
display: inline-block;
padding: 0.5em;
border: 1px solid #999999;
background: #dddddd;
color: #333333;
2011-05-31 12:40:13 -04:00
border-width: 1px 1px 0 1px;
cursor: pointer;
text-shadow: 0 1px 0 #eeeeee; }
#message > header .views .tab:not(.selected):hover {
background-color: #dddddd; }
2011-05-31 12:40:13 -04:00
#message > header .views .tab.selected {
background: white;
color: black;
2011-05-31 12:40:13 -04:00
height: 13px;
-moz-box-shadow: 1px 1px 0 #cccccc;
-webkit-box-shadow: 1px 1px 0 #cccccc;
-o-box-shadow: 1px 1px 0 #cccccc;
box-shadow: 1px 1px 0 #cccccc;
margin-bottom: -2px; }
#message > header .views .button {
display: inline-block;
float: right;
margin: 0 0.25em; }
2011-05-31 12:40:13 -04:00
#message > header .views .button a {
display: inline-block;
padding: 0.25em 0.5em;
border: 1px solid #999999;
background: #dddddd;
color: #333333;
2011-05-31 12:40:13 -04:00
text-decoration: none;
text-shadow: 1px 1px 0 #eeeeee;
-moz-box-shadow: 1px 1px 0 #cccccc;
-webkit-box-shadow: 1px 1px 0 #cccccc;
-o-box-shadow: 1px 1px 0 #cccccc;
box-shadow: 1px 1px 0 #cccccc; }
#message > header .views .button a:hover {
background: white;
2011-05-31 12:40:13 -04:00
text-shadow: none; }
#message > header .views .button a:active {
margin: 1px -1px -1px 1px;
-moz-box-shadow: none;
-webkit-box-shadow: none;
-o-box-shadow: none;
box-shadow: none; }
#message .body {
display: -moz-box;
display: -webkit-box;
display: box;
-moz-box-flex: 1;
-webkit-box-flex: 1;
box-flex: 1;
width: 100%;
background: white; }