KNACSS/sass/_10-styling.scss

114 lines
1.4 KiB
SCSS
Raw Normal View History

2014-05-04 15:48:00 +02:00
/* ----------------------------- */
/* ==minor stylings */
/* ----------------------------- */
2015-08-27 11:04:01 +02:00
/* styling elements */
code, kbd, mark {
2015-07-01 13:47:48 +02:00
border-radius: 2px;
}
kbd {
2015-07-01 13:47:48 +02:00
padding: 0 2px;
border: 1px solid #999;
}
code {
2015-07-01 13:47:48 +02:00
padding: 2px 4px;
2015-08-27 11:04:01 +02:00
background: rgba(0,0,0,0.04);
2015-07-01 13:47:48 +02:00
color: #b11;
}
pre code {
2015-11-10 15:53:03 +01:00
padding: 0;
2015-07-01 13:47:48 +02:00
background: none;
color: inherit;
border-radius: 0;
}
mark {
2015-08-27 11:04:01 +02:00
padding:2px 4px;
}
sup,
sub {
2015-07-01 13:47:48 +02:00
vertical-align: 0;
}
sup {
2015-07-01 13:47:48 +02:00
bottom: 1ex;
}
sub {
2015-07-01 13:47:48 +02:00
top: 0.5ex;
}
blockquote {
2015-07-01 13:47:48 +02:00
position: relative;
padding-left: 3em;
}
blockquote::before {
2015-07-01 13:47:48 +02:00
content: "\201C";
position: absolute;
left: 0;
top: 0;
font-family: georgia, serif;
font-size: 5em;
line-height: 0.9;
color: rgba(0, 0, 0, .3);
}
blockquote > footer {
2015-07-01 13:47:48 +02:00
margin-top: .75em;
font-size: 0.9em;
color: rgba(0, 0, 0, .7);
}
blockquote > footer::before {
2015-07-01 13:47:48 +02:00
content: "\2014 \0020";
}
q {
2015-07-01 13:47:48 +02:00
font-style: normal;
}
q,
2015-08-27 11:04:01 +02:00
.#{$kna-namespace}q {
2015-07-01 13:47:48 +02:00
quotes: "“\00a0" "\00a0”";
}
q:lang(fr),
2015-08-27 11:04:01 +02:00
.#{$kna-namespace}q:lang(fr) {
2015-07-01 13:47:48 +02:00
quotes: "«\00a0" "\00a0»";
}
hr {
2015-07-01 13:47:48 +02:00
display: block;
clear: both;
height: 1px;
margin: 1em 0 2em;
padding: 0;
border: 0;
color: #ccc;
background-color: #ccc;
}
2015-08-27 11:04:01 +02:00
/* tables */
table,
2015-08-27 11:04:01 +02:00
.#{$kna-namespace}table {
border: 1px solid #ccc;
}
caption {
2015-07-05 16:39:47 +02:00
padding: $small-value;
color: #555;
font-style: italic;
}
td,
th {
padding: 0.3em 0.8em;
border: 1px #aaa dotted;
text-align: left;
2015-11-10 15:53:03 +01:00
}