1
0
mirror of https://github.com/Chalarangelo/mini.css.git synced 2025-09-08 21:20:49 +02:00

Blockquote styling

This commit is contained in:
Angelos Chalaris
2016-12-15 23:19:32 +02:00
parent 25f5a2288e
commit 0f7cd386b3
6 changed files with 85 additions and 4 deletions

20
dist/mini-default.css vendored
View File

@@ -1,3 +1,4 @@
@charset "UTF-8";
/*
Flavor name: Default (mini-default)
Author: Angelos Chalaris (chalarangelo@gmail.com)
@@ -95,6 +96,25 @@ hr {
background: -webkit-linear-gradient(to right, #bdbdbd, #616161, #bdbdbd);
background: linear-gradient(to right, #bdbdbd, #616161, #bdbdbd); }
blockquote {
display: block;
position: relative;
font-style: italic;
background: #eeeeee;
margin: 8px 10px;
padding: 6px 10px 24px;
border-left: 3px solid #616161;
border-radius: 0 2px 2px 0;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.15); }
blockquote:after {
position: absolute;
font-style: normal;
font-size: 0.85em;
color: #616161;
left: 10px;
bottom: 0;
content: "— " attr(cite); }
code, kbd, pre, samp {
font-family: monospace, monospace; }