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.
63 lines
1.3 KiB
63 lines
1.3 KiB
5 years ago
|
* {
|
||
|
font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;
|
||
|
font-size: 1em;
|
||
|
font-style: normal;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
max-width: 50rem;
|
||
|
padding: 20px 10px;
|
||
|
background: #000;
|
||
|
color: #ccc;
|
||
|
line-height: 1rem;
|
||
|
margin: 0 auto;
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
display: block;
|
||
|
position: relative;
|
||
|
padding: 20px 0 10px;
|
||
|
margin 0;
|
||
|
overflow: hidden;
|
||
|
float: none;
|
||
|
line-height: 1.3rem;
|
||
|
}
|
||
|
|
||
|
h1:after {
|
||
|
content: "====================================================================================================";
|
||
|
position: absolute;
|
||
|
bottom: -7px;
|
||
|
left: 0;
|
||
|
}
|
||
|
|
||
|
h2 {
|
||
|
position: relative;
|
||
|
margin-top: 1rem;
|
||
|
margin-bottom: 10px;
|
||
|
}
|
||
|
|
||
|
h2:before {
|
||
|
content: "## ";
|
||
|
display: inline;
|
||
|
}
|
||
|
|
||
|
a, a:visited {
|
||
|
color: #ccc;
|
||
|
cursor: pointer;
|
||
|
border-bottom: 1px solid #ff2e88;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
a:after {
|
||
|
content: " " url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20class='i-external'%20viewBox='0%200%2032%2032'%20width='14'%20height='14'%20fill='none'%20stroke='%23ff9800'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-width='9.38%'%3E%3Cpath%20d='M14%209%20L3%209%203%2029%2023%2029%2023%2018%20M18%204%20L28%204%2028%2014%20M28%204%20L14%2018'/%3E%3C/svg%3E");
|
||
|
}
|
||
|
|
||
|
div.muted {
|
||
|
color: rgba(255,255,255,0.5);
|
||
|
}
|
||
|
|
||
|
div.hide {
|
||
|
display: none;
|
||
|
}
|
||
|
|