1e274b01fe
- use bootstrap recommended viewport
111 lines
1.9 KiB
CSS
111 lines
1.9 KiB
CSS
/* body { */
|
|
/* margin-top: 75px; /\* 100px is double the height of the navbar - I made it a big larger for some more space - keep it at 50px at least if you want to use the fixed top nav *\/ */
|
|
/* } */
|
|
|
|
/* footer { */
|
|
/* margin: 50px 0; */
|
|
/* } */
|
|
|
|
html {
|
|
font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
|
|
font-size: 15px;
|
|
line-height: 1.42857143;
|
|
color: #222222;
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
a {
|
|
color: #3f79ad;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
color: #70caf2;
|
|
}
|
|
|
|
table {
|
|
background-color:#e0e0ff
|
|
}
|
|
|
|
tbody td, th {
|
|
border: 1px solid black;
|
|
padding: 3px 7px 2px 7px;
|
|
}
|
|
|
|
thead td, th {
|
|
border: 1px solid black;
|
|
padding: 3px 7px 2px 7px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
tbody tr:nth-child(odd) {
|
|
background-color:#d0d0ff
|
|
}
|
|
|
|
/* Preserve whitespace. Wrap text only at line breaks. */
|
|
/* Avoids auto-wrapping the code lines. */
|
|
pre code {
|
|
white-space: pre
|
|
}
|
|
|
|
/* Hover over links on headers */
|
|
.header-link {
|
|
position: absolute;
|
|
left: -0.5em;
|
|
opacity: 0;
|
|
transition: opacity 0.2s ease-in-out 0.1s;
|
|
}
|
|
h2:hover .header-link,
|
|
h3:hover .header-link,
|
|
h4:hover .header-link,
|
|
h5:hover .header-link,
|
|
h6:hover .header-link {
|
|
opacity: 1;
|
|
}
|
|
h2, h3, h4, h5, h6 {
|
|
padding-top: 55px;
|
|
margin-top: -44px;
|
|
}
|
|
|
|
/* Fix spacing between menu items */
|
|
/* .navbar-default .dropdown-menu>li>a { */
|
|
/* padding-top: 6px; */
|
|
/* padding-bottom: 6px; */
|
|
/* } */
|
|
|
|
/* custom logo in navbar */
|
|
.rclone-logo {
|
|
height: 36px;
|
|
}
|
|
|
|
/* override padding so logo is centered */
|
|
/* .navbar-brand { */
|
|
/* padding: 4px 15px; */
|
|
/* } */
|
|
|
|
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
|
|
font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
|
|
font-weight: 300;
|
|
line-height: 1.1;
|
|
color: inherit;
|
|
}
|
|
|
|
/*
|
|
|
|
/* reduce h12345 sizes */
|
|
h1 {
|
|
font-size: 25px;
|
|
}
|
|
h2 {
|
|
font-size: 22px;
|
|
}
|
|
h3 {
|
|
font-size: 20px;
|
|
}
|
|
h4 {
|
|
font-size: 18px;
|
|
}
|
|
h5 {
|
|
font-size: 16px;
|
|
}
|
|
*/
|