You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
145 lines
1.8 KiB
SCSS
145 lines
1.8 KiB
SCSS
---
|
|
# Only the main Sass file needs front matter (the dashes are enough)
|
|
---
|
|
@charset "utf-8";
|
|
|
|
// Import partials from `sass_dir` (defaults to `_sass`)
|
|
@import "normalize";
|
|
@import "skeleton";
|
|
@import "github-markdown";
|
|
@import "prism";
|
|
|
|
html,
|
|
body {
|
|
margin:0;
|
|
padding:0;
|
|
height:100%;
|
|
}
|
|
|
|
#wrapper {
|
|
min-height:100%;
|
|
position:relative;
|
|
}
|
|
|
|
#header {
|
|
padding:10px;
|
|
}
|
|
|
|
#content {
|
|
padding-bottom:50px;
|
|
}
|
|
|
|
#footer {
|
|
width:100%;
|
|
height:50px;
|
|
position:absolute;
|
|
bottom:0;
|
|
left:0;
|
|
}
|
|
|
|
.title {
|
|
font-size: 4.0rem;
|
|
line-height: 1.2;
|
|
font-weight: 300;
|
|
a, a:hover, a:link, a:visited, a:active {
|
|
color: #222;
|
|
text-decoration: none;
|
|
.title-extra
|
|
{
|
|
color: #1EAEDB;
|
|
}
|
|
}
|
|
}
|
|
|
|
.button-primary code
|
|
{
|
|
color: #222;
|
|
background-color: #c0efff;
|
|
}
|
|
|
|
.result-names p {
|
|
font-size: 1.5rem;
|
|
margin-bottom: 0.1em;
|
|
}
|
|
|
|
#markdown {
|
|
height: 150px;
|
|
font-family: monospace;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.cmark
|
|
{
|
|
display: inline-block;
|
|
width: 26px;
|
|
height: 16px;
|
|
background: url(/images/markdown.svg);
|
|
}
|
|
|
|
.heading-info {
|
|
font-size: 1.5rem;
|
|
color: #888;
|
|
letter-spacing: normal;
|
|
}
|
|
|
|
.heading-info code
|
|
{
|
|
padding-bottom: 0px;
|
|
padding-top: 0px;
|
|
}
|
|
|
|
code .result-lang
|
|
{
|
|
padding: 0px;
|
|
}
|
|
|
|
.result h4
|
|
{
|
|
margin-top: 1rem;
|
|
border-bottom-width: 1px;
|
|
border-bottom-style: inset;
|
|
color: #ccc;
|
|
}
|
|
|
|
.copyright
|
|
{
|
|
text-align: center;
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.result-error
|
|
{
|
|
background-color: #FFEEEE;
|
|
color: #ee0000;
|
|
padding: 1rem;
|
|
}
|
|
|
|
.result-warning
|
|
{
|
|
background-color: rgb(255, 250, 238);
|
|
color: rgb(238, 176, 0);
|
|
padding: 1rem;
|
|
}
|
|
|
|
.result-order
|
|
{
|
|
float: right;
|
|
}
|
|
|
|
.preview
|
|
{
|
|
border-style: dashed;
|
|
border-width: 1px;
|
|
border-color: #ccc;
|
|
padding: 1em;
|
|
}
|
|
|
|
.logo {
|
|
width: 32px;
|
|
}
|
|
|
|
/* Larger than phablet */
|
|
@media (min-width: 550px) {
|
|
.title { font-size: 7.0rem; }
|
|
.logo { width: 64px; }
|
|
} |