Dotfiles.
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.

194 lines
2.8 KiB

h1, h2, h3, h4 {
padding-left: 0.5em;
padding-bottom: 0;
}
h1 {
color: white;
font-weight: 300;
background-color: #414650;
width: 100%;
border: 3px solid #414650;
}
h2 {
color: white;
font-weight: 400;
background-color: #414650;
width: 100%;
border: 2px solid #414650;
}
h3 {
color: white;
font-weight: 150;
background-color: #606776;
}
h4 {
color: black;
font-weight: 100;
width: 100%;
text-decoration: underline;
}
mark {
background: #aeefce;
color: black;
padding-left: 3px;
padding-right: 3px;
}
a {
color: #5082be;
font-weight: bold;
text-decoration: none;
}
/* TOC */
5 years ago
nav.table-of-contents ul {
list-style-type: none;
margin-top: 0px;
margin-bottom: 0px;
}
nav.table-of-contents>ul {
5 years ago
top: 5px;
right: 0px;
z-index: 99;
font-size: 12px;
5 years ago
position: fixed;
padding: 15px;
border-radius: 10px 0px 0px 10px;
margin: 0px;
5 years ago
overflow: hidden;
height: 90%;
width: 5px;
transition: .2s;
}
5 years ago
nav.table-of-contents::after {
5 years ago
content: "";
5 years ago
color: black;
}
nav.table-of-contents>ul:hover {
background: #F8F8F8;
box-shadow: -5px 0px 10px 0px rgba(0,0,0,0.15);
width: 30%;
color: none;
overflow: scroll;
}
nav.table-of-contents>ul:hover::before {
content: "TABLE OF CONTENTS"
}
nav.table-of-contents>ul:hover li {
display: list-item;
}
nav.table-of-contents li {
5 years ago
display: none;
white-space: nowrap;
overflow: hidden;
margin: 0px;
padding: 0px;
}
#rendered-md {
width: 100%;
}
/* BADGES */
b-error, b-success, b-notice, b-warning, b-help {
display: block;
margin-bottom: 10px;
padding: 10px 10px 10px 50px;
border: 1px solid;
border-left: 5px solid;
border-radius: 2px;
word-wrap: break-word;
text-align: left;
box-shadow: 3px 3px 7px 0 rgba(0,0,0,0.3);
color: var(--grey);
background-color: transparent;
}
b-error::before,
b-success::before,
b-notice::before,
b-warning::before,
b-help::before {
font-weight: 700;
font-size: 1.5em;
left: 30px;
position: absolute;
}
b-error {
border-color: var(--red);
color: red;
}
b-error::before {
content: "❌";
font-family: "Font Awesome 5 Free" !important;
color: red;
}
b-success {
border-color: forestgreen;
color: forestgreen;
}
b-success::before {
content: "✅";
font-family: "Font Awesome 5 Free" !important;
color: forestgreen;
}
b-warning {
border-color: darkorange;
color: darkorange;
}
b-warning::before {
content: "⚠";
font-family: "Font Awesome 5 Free" !important;
color: var(--orange-light) !important;
}
b-notice {
border-color: cornflowerblue;
color: cornflowerblue;
}
b-notice::before {
content: "ℹ";
font-family: "Font Awesome 5 Free" !important;
color: cornflowerblue;
}
b-help {
border-color: blueviolet;
color: blueviolet;
}
b-help::before {
content: "🔔";
font-family: "Font Awesome 5 Free" !important;
color: blueviolet;
}