iredmail-doc/html_bk/css/markdown.css

461 lines
10 KiB
CSS
Executable File

body{
margin: 0 auto;
font-family: 'PT Sans', Georgia, Palatino, serif;
line-height: 1;
max-width: 75%;
padding: 30px 0px 100px 0px;
}
h1, h2, h3, h4, h5 {
font-weight: bold;
margin-top: 24px;
margin-bottom: 24px;
}
p {
margin-bottom: 4px;
padding: 0;
}
h1 { font-size: 40px; }
h2 { font-size: 36px; padding-top: 24px;}
h3 { font-size: 24px; }
h4 { font-size: 21px; }
h5 { font-size: 18px; }
h1 code { font-size: 40px; }
h2 code { font-size: 36px; }
h3 code { font-size: 24px; }
h4 code { font-size: 21px; }
h5 code { font-size: 18px; }
a {
color: #0099ff;
margin: 0;
padding: 0;
vertical-align: baseline;
text-decoration: none;
}
a:hover {
text-decoration: none;
color: #ff6600;
}
a:visited {
color: purple;
}
ul, ol {
padding-left: 30px;
margin: 0;
}
li {
line-height: 24px;
}
li ul, li ul {
margin-left: 24px;
}
p, ul, ol {
font-size: 16px;
line-height: 24px;
/*max-width: 540px;*/
}
pre {
padding: 0px 24px;
/*max-width: 800px;*/
white-space: pre-wrap;
}
code {
font-family: Consolas, Monaco, Andale Mono, monospace;
line-height: 1.5;
font-size: 13px;
}
h3 code { font-size: 18px; }
aside {
display: block;
float: right;
/*width: 390px;*/
}
blockquote {
border-left: 0.5em solid #eee;
padding: 0 1em;
margin-left:0;
font-style: italic;
/*max-width: 476px;*/
}
blockquote cite {
font-size:14px;
line-height:20px;
color:#bfbfbf;
}
blockquote cite:before {
content: '\2014 \00A0';
}
blockquote p {
color: #666;
/*max-width: 460px;*/
}
hr {
/*width: 540px;*/
text-align: left;
margin: 0 auto 0 0;
color: #999;
}
/* Code below this line is copyright Twitter Inc. */
button, .button, input, select, textarea {
font-size: 100%;
margin: 0;
vertical-align: baseline;
vertical-align: middle;
}
button, .button, input {
line-height: normal;
overflow: visible;
}
button::-moz-focus-inner, .button::-moz-focus-inner, input::-moz-focus-inner {
border: 0;
padding: 0;
}
button,
.button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
cursor: pointer;
-webkit-appearance: button;
}
input[type=checkbox], input[type=radio] {
cursor: pointer;
}
/* override default chrome & firefox settings */
input:not([type="image"]), textarea {
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
}
input[type="search"] {
-webkit-appearance: textfield;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
}
input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
label,
input,
select,
textarea {
font-family: 'PT Sans', Georgia, Palatino, serif;
font-size: 13px;
font-weight: normal;
line-height: normal;
margin-bottom: 18px;
}
input[type=checkbox], input[type=radio] {
cursor: pointer;
margin-bottom: 0;
}
input[type=text],
input[type=password],
textarea,
select {
display: inline-block;
width: 210px;
padding: 4px;
font-size: 13px;
font-weight: normal;
line-height: 18px;
height: 18px;
color: #808080;
border: 1px solid #ccc;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
select, input[type=file] {
height: 27px;
line-height: 27px;
}
textarea {
height: auto;
}
/* grey out placeholders */
:-moz-placeholder {
color: #bfbfbf;
}
::-webkit-input-placeholder {
color: #bfbfbf;
}
input[type=text],
input[type=password],
select,
textarea {
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
transition: border linear 0.2s, box-shadow linear 0.2s;
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
input[type=text]:focus, input[type=password]:focus, textarea:focus {
outline: none;
border-color: rgba(82, 168, 236, 0.8);
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
}
/* buttons */
button, .button {
display: inline-block;
padding: 4px 14px;
font-family: 'PT Sans', Georgia, Palatino, serif;
font-size: 13px;
line-height: 18px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
background-color: #0064cd;
background-repeat: repeat-x;
background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
background-image: -o-linear-gradient(top, #049cdb, #0064cd);
background-image: linear-gradient(top, #049cdb, #0064cd);
color: #fff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
border: 1px solid #004b9a;
border-bottom-color: #003f81;
-webkit-transition: 0.1s linear all;
-moz-transition: 0.1s linear all;
transition: 0.1s linear all;
border-color: #0064cd #0064cd #003f81;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}
button:hover, .button:hover {
color: #fff;
background-position: 0 -15px;
text-decoration: none;
}
button:active, .button:active {
-webkit-box-shadow: inset 0 3px 7px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
-moz-box-shadow: inset 0 3px 7px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 3px 7px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}
button::-moz-focus-inner, .button::-moz-focus-inner {
padding: 0;
border: 0;
}
/* Customizations */
h2, h3, h4, h5 { padding-top: 20px; }
.footer { padding-top: 40px; }
pre, code {
background: #f5f5f5;
border: 1px solid #ccc;
border-radius: 2px;
padding: 5px 10px 5px 10px;
word-wrap: normal;
font-size: 14px;
line-height: 25px;
}
code { padding: 1px 5px 1px 5px; }
pre>code {
margin: 0;
border: 0;
padding: 5px 10px 5px 0px;
}
/* A fixed navigation bar */
#navigation {
/*position: fixed;*/
top: 0;
width: 70%;
height: 35px;
/*
text-align: center;
*/
padding-top: 15px;
/*
color: #ffffff;
*/
/* Adds shadow to the bottom of the bar */
/*
-webkit-box-shadow: 0px 0px 8px 0px #000000;
-moz-box-shadow: 0px 0px 8px 0px #000000;
box-shadow: 0px 0px 8px 0px #000000;
*/
/* Adds the transparent background */
/*
background-color: #000000;
*/
}
#navigation a {
font-size: 20px;
/*
padding-left: 15px;
padding-right: 15px;
*/
text-decoration: none;
}
#navigation a:hover {
color: #0099ff;
}
th { font-style: bold; text-align: left; }
.red { color: red; }
/*
code.bash { background-color: green; color: white; }
*/
pre { margin-left: 30px; }
p, ul, ol { font-size: 17px; }
li { line-height: 26px; }
.f_left { float: left; }
.f_right { float: right; }
/*
.note {
background: #e7f2fa;
padding: 12px;
line-height: 24px;
margin-bottom: 24px;
}
.note .admonition-title {
background: #6ab0de;
}
.note p:last-child {
margin-bottom: 0;
}
*/
.note, .attention, .caution, .danger, .error, .hint, .important, .tip, .warning, .seealso, .admonition-todo {
padding: 12px;
line-height: 24px;
margin-bottom: 24px;
background: #e7f2fa;
}
.admonition { margin-top: 20px; }
.admonition-title {
font-weight: bold;
display: block;
color: #fff;
margin: -12px;
padding: 6px 12px;
margin-bottom: 12px
}
/*
.caution .admonition-title,
.danger .admonition-title,
.error .admonition-title,
.hint .admonition-title,
.important .admonition-title,
.tip .admonition-title,
.seealso .admonition-title,
.admonition-todo .admonition-title
*/
.note .admonition-title { background: #6ab0de; }
.warning .admonition-title { background: #f0b37e; }
.attention .admonition-title { display: none; }
.attention { background: #e7f2fa; }
.warning { background: #FFFFE1; }
.attention p { margin-top: 4px; }
/* Table */
table { border: 1px solid black; border-collapse: collapse;}
th { padding: 5px 10px 5px 10px; }
td { padding: 5px 10px 5px 10px; }
th, td { border: 1px solid black; }
button, .button { font-size: 16px; padding: 5px 5px 5px 5px; }
/* Style for API document */
.api {
line-height: 18px;
padding: 3px 12px 0px 0px;
margin-top: 0px;
margin-bottom: 0px;
}
.api .admonition-title {
background-color: white;
padding: 0px 12px 0px 5px;
}
.api code.url { background-color: white; color: black; display: inline-block; }
.api code.get,
.api code.post,
.api code.put,
.api code.delete,
.api code.has_params,
.api code.has_params_throttle,
.api code.has_params_greylisting,
.api code.has_params_greylisting_whitelists,
.api code.has_params_spampolicy,
.api code.has_params_wblist
{
display: inline-block;
width: 60px;
text-align: center;
}
.api code.get { background-color: #0f6ab4; }
.api code.post { background-color: #10a54a; }
.api code.put { background-color: #c5862b; padding-left: 5px; padding-right: 5px;}
.api code.delete { background-color: #a41e22; }
.api code.upcoming { background-color: #0f6ab4; text-transform: uppercase; font-size: 12px; }
.api code.new { background-color: #10a54a; text-transform: uppercase; }
.api code.has_params,
.api code.has_params_throttle,
.api code.has_params_greylisting,
.api code.has_params_greylisting_whitelists,
.api code.has_params_spampolicy,
.api code.has_params_wblist
{
background-color: #0064cd;
font-size: 12px;
float: right;
width: auto;
cursor: pointer;
}
.api code.comment {
color: black;
background-color: white;
border: 0px;
font-family: 'PT Sans', Georgia, Palatino, serif;
font-size: 16px;
font-style: normal;
}
.api table {
border: 0px;
border-collapse: collapse;
/*
width: 100%;
*/
text-align: left;
line-height: 30px;
vertical-align: middle;
margin-bottom: 20px;
}
.api table thead { background-color: #ccc; }
.api th { padding: 0px 10px 0px 10px; }
.api td { padding: 0px 10px 0px 10px; }
/* END style for API Document */
ul .checklist {
list-style-type: none;
padding-left: 5px;
}