You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

156 lines
2.3 KiB

/* CSS Mini Reset */
html, body, div, form, fieldset, legend, label
{
margin: 0;
padding: 0;
}
table
{
border-collapse: collapse;
border-spacing: 0;
}
th, td
{
text-align: left;
vertical-align: top;
}
h1, h2, h3, h4, h5, h6, th, td, caption { font-weight:normal; }
img { border: 0; }
/* ************************************** */
/* Toolbar */
.toolbar {
padding: 13px;
border-bottom: 1px #eee solid;
background-color: rgba(255,255,255,0.97);
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
}
.toolbar-left {
float: left;
}
.toolbar-right {
float: right;
margin-right: 40px;
}
.toolbar-left .item {
margin-right: 8px;
display: inline-block;
}
.toolbar-left .logo {
vertical-align: middle;
}
#draft-status {
color: #aaa;
font-family: sans-serif;
font-size: 16px;
}
.toolbar .clear {
clear: both;
}
.toolbar .btn {
height: 38px;
-webkit-border-radius: 999px;
-moz-border-radius: 999px;
border-radius: 999px;
display: inline-block;
padding: 0 24px;
background: rgba(0,0,0,0);
font-size: 14px;
text-decoration: none;
text-align: center;
border: 1px #93dee5 solid;
color: #60b1b8;
vertical-align: middle;
cursor: pointer;
}
/* ************************************** */
/* Editor CSS */
body {
font-size: 22px;
line-height: 30px;
}
body, input {
font-family: Georgia,Cambria,"Times New Roman",Times,serif;
}
*:focus {
outline: none;
}
.container {
width: 960px;
margin: 0 auto;
margin-top: 63px;
z-index: 0;
}
#post-name {
margin-top: 20px;
margin-bottom: 20px;
border: 0;
font-weight: bold;
font-size: 42px;
}
#content {
min-height: 300px;
}
/* editor's h1 is actually h3 */
h3 {
font-weight: bold;
font-size: 36px;
}
h4 {
font-weight: bold;
font-size: 30px;
}
p {
margin-bottom: 30px;
}
pre {
font-family: 'Menlo', monospace;
font-size: 15px;
background-color: #f0f0f0;
padding: 15px;
border: 1px solid #ccc;
border-radius: 5px;
color: #666;
}
blockquote {
display: block;
padding-left: 20px;
border-left: 6px solid #dbdbdb;
margin-left: -15px;
padding-left: 15px;
font-style: italic;
color: #555;
}
.editable,
.secondEditable {
outline: none;
margin: 0 0 20px 0;
padding: 0 0 20px 0;
border-bottom: 1px solid #dbdbdb;
border-top: 1px solid #dbdbdb;
}
.editable .placeholder {
color: #ccc;
}