blob: 80c2226eee83f485d8f083e8c5a9b9b228842f32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/* file : code-box.css
* copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
* license : MIT; see accompanying LICENSE file
*/
code
{
background-color: rgba(0, 0, 0, 0.05);
border-radius: 0.2em;
padding: .2em .32em .18em .32em;
}
/*
code::before
{
letter-spacing: -0.2em;
content: "\00a0";
}
code::after
{
letter-spacing: -0.2em;
content: "\00a0";
}
*/
|