-
Notifications
You must be signed in to change notification settings - Fork 0
/
code.css
54 lines (48 loc) · 800 Bytes
/
code.css
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
.demo {
position: relative;
padding: 20px;
margin-bottom: 10px;
border: 1px solid #eee;
font-size: 11px;
}
.demo:before {
content: 'DEMO';
position: absolute;
top: 5px;
right: 10px;
margin-bottom: 5px;
display: block;
border-bottom: 1px solid #ae9b36;
text-align: right;
font-style: italic;
color: #ae9b36;
}
figure {
position: relative;
display: block;
margin: 0;
overflow-x: scroll;
}
.code {
background-color: #f8f8f8;
padding: 5px 10px;
padding: 20px;
font-size: 11px;
color: #ae9b36;
}
.code.js:before {
content: 'JS';
}
.code:before {
position: absolute;
top: 5px;
right: 10px;
margin-bottom: 5px;
display: block;
border-bottom: 1px solid #ae9b36;
text-align: right;
font-style: italic;
}
.code code {
color: #2973b7;
}