Skip to content

Instantly share code, notes, and snippets.

@Eugeny
Created May 5, 2011 13:32
Show Gist options
  • Save Eugeny/957023 to your computer and use it in GitHub Desktop.
Save Eugeny/957023 to your computer and use it in GitHub Desktop.
.block-content {
width: 960px;
margin: auto;
}
.block-content-right {
float: right;
width: 960px;
}
.tab-control {
padding: 7px 5px 0;
border-bottom: 1px solid #eee;
}
.tab-control>a {
margin: 0 3px -1px 0;
padding: 5px 8px;
display: inline-block;
z-index: 5;
position: relative;
}
.tab-control>a.active {
box-shadow: inset 0 2px 1px rgba(50, 50, 50, 0.15);
-webkit-box-shadow: inset 0 2px 1px rgba(50, 50, 50, 0.15);
-moz-box-shadow: inset 0 2px 1px rgba(50, 50, 50, 0.15);
border-radius: 5px 5px 0 0;
-moz-border-radius: 5px 5px 0 0;
-webkit-border-radius: 5px 5px 0 0;
background: #fff;
background: -moz-linear-gradient(top, #f5f5f5, #fff);
background: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5),
to(#fff) );
}
.tab-control>a>.counter {
position: absolute;
right: -8px;
top: -3px;
padding: 0 3px;
border-radius: 6px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
background: #709ec4;
color: #fff;
font-size: 12px;
text-shadow: 0 -1px 0 #507ea4;
}
.messaging {
margin: 1px 0 0 0;
border: 1px solid #ddd;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
box-shadow: 0 0 1px #bbb;
-webkit-box-shadow: 0 0 1px #bbb;
-moz-box-shadow: 0 0 1px #bbb;
background: #fff;
}
.messaging>.header {
background: #eee;
color: #868686;
font-size: 11px;
line-height: 1em;
padding: 6px 10px 6px;
text-transform: uppercase;
border-radius: 5px 5px 0 0;
-moz-border-radius: 5px 5px 0 0;
-webkit-border-radius: 5px 5px 0 0;
background: #eee;
background: -moz-linear-gradient(top, #fff, #eee);
background: -webkit-gradient(linear, left top, left bottom, from(#fff),
to(#eee) );
}
.messaging div.search {
padding: 10px 10px 10px 20px;
border-bottom: 1px dashed #ddd;
line-height: 22px;
color: #666;
}
.messaging div.search div.box {
float: right;
width: 300px;
text-align: right;
}
.messaging div.search div.box>div {
float: right;
text-align: left;
margin: 0 10px;
width: 230px;
border: 1px solid #ddd;
box-shadow: inset 0 2px 1px rgba(50, 50, 50, 0.15);
-webkit-box-shadow: inset 0 2px 1px rgba(50, 50, 50, 0.15);
-moz-box-shadow: inset 0 2px 1px rgba(50, 50, 50, 0.15);
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}
.messaging div.search div.box>div>input {
border: none;
background: transparent;
padding: 3px;
}
.messaging div.search div.box>div>a {
float: right;
border-left: 1px solid #ddd;
display: inline-block;
background: #eee;
background: -moz-linear-gradient(top, #eee, #ddd);
background: -webkit-gradient(linear, left top, left bottom, from(#eee),
to(#ddd) );
width: 22px;
height: 18px;
padding: 4px 0 0 6px;
}
.messaging div.search div.box>div>a:hover {
border-left: 1px solid #eee;
background: #fff;
background: -moz-linear-gradient(top, #fff, #eee);
background: -webkit-gradient(linear, left top, left bottom, from(#fff),
to(#eee) );
}
.messaging .message {
padding: 20px 20px;
overflow: hidden;
border-bottom: 1px dashed #ddd;
}
.messaging .message-unread {
background: #e0efff;
}
.messaging .message input {
float: left;
margin: 0px 10px 0 0;
}
.messaging .message .meta {
float: left;
width: 160px;
}
.messaging .message .meta .date {
color: #666;
font-style: italic;
}
.messaging .message .main {
float: left;
width: 400px;
}
.messaging .message .main .subject {
display: block;
color: #777;
}
.messaging .message .controls {
float: right;
}
.messaging .paginator {
text-align: center;
padding: 20px 0 10px;
}
.messaging .paginator a {
border-radius: 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border: 1px solid #ddd;
padding: 3px 4px;
}
.messaging .paginator a.active {
background: #e0efff;
border: 1px solid #e0efff;
}
.messaging .read {
margin: 20px 60px;
border: 20px solid #eee;
padding: 20px;
}
.messaging .read .author {
color: #2a2a2a;
font-size: 14px;
font-style: italic;
float: left;
display: block;
}
.messaging .read .recipient {
color: #555;
font-size: 12px;
font-style: italic;
float: left;
clear: both;
display: block;
}
.messaging .read .delete-link {
float: right;
display: block;
}
.messaging .read .date {
display: block;
clear: both;
color: #bdbdbd;
font-size: 11px;
margin-top: 7px;
display: block;
}
.messaging .read .text {
font-size: 11px;
color: #000000;
margin-top: 18px;
display: block;
padding: 0;
}
.messaging .read textarea {
width: 100%;
height: 150px;
margin-top: 15px;
}
.messaging .read input[type=submit] {
font-size: 18px;
margin-top: 15px;
padding: 5px 17px;
cursor: pointer;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment