Telethon/docs/res/css/docs.css

142 lines
1.9 KiB
CSS
Raw Normal View History

2017-04-07 19:30:54 +03:00
body {
font-family: 'Nunito', sans-serif;
color: #333;
background-color:#fff;
font-size: 16px;
}
a {
color: #42aaed;
text-decoration: none;
}
pre {
2017-04-08 13:26:48 +03:00
font-family: 'Source Code Pro', monospace;
2017-04-07 19:30:54 +03:00
padding: 8px;
color: #567;
background: #f0f4f8;
border-radius: 0;
overflow-x: auto;
}
a:hover {
color: #64bbdd;
text-decoration: underline;
}
table {
width: 100%;
max-width: 100%;
}
table td {
border-top: 1px solid #eee;
padding: 8px;
}
.horizontal {
margin-bottom: 16px;
list-style: none;
background: #f0f4f8;
border-radius: 4px;
padding: 8px 16px;
}
.horizontal li {
display: inline-block;
margin: 0 8px 0 0;
}
.horizontal img {
display: inline-block;
margin: 0 8px -2px 0;
}
h1 {
font-size: 24px;
}
h3 {
font-size: 20px;
}
#main_div {
padding: 20px 0;
max-width: 800px;
margin: 0 auto;
}
pre::-webkit-scrollbar {
visibility: visible;
display: block;
height: 12px;
}
pre::-webkit-scrollbar-track:horizontal {
background: #def;
border-radius: 0;
height: 12px;
}
pre::-webkit-scrollbar-thumb:horizontal {
background: #bdd;
2017-04-08 14:58:42 +03:00
border-radius: 0;
height: 12px;
}
:target {
border: 2px solid #f8f800;
background: #f8f8f8;
padding: 4px;
}
/* 'sh' stands for Syntax Highlight */
span.sh1 {
color: #f70;
}
span.sh2 {
color: #0c7;
}
span.sh3 {
color: #aaa;
font-style: italic;
}
span.sh4 {
color: #06c;
2017-04-07 19:30:54 +03:00
}
2017-04-15 14:58:21 +03:00
#searchBox {
width: 100%;
border: none;
height: 20px;
padding: 8px;
font-size: 16px;
border-radius: 2px;
border: 2px solid #ddd;
}
#searchBox:placeholder-shown {
font-style: italic;
}
2017-04-07 19:30:54 +03:00
@media (max-width: 640px) {
h1 {
font-size: 18px;
}
h3 {
font-size: 16px;
}
#dev_page_content_wrap {
padding-top: 12px;
}
2017-04-07 19:30:54 +03:00
#dev_page_title {
margin-top: 10px;
margin-bottom: 20px;
}
}