_components.scss
1.98 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/* Panels */
.panel {
border-style: solid;
border-width: 1px;
border-color: #d7d7d7;
margin-bottom: 1.25rem;
padding: 1.25rem;
background: #f2f2f2;
color: #333333;
}
.panel >:first-child {
margin-top: 0;
}
.panel >:last-child {
margin-bottom: 0;
}
.panel h1, .panel h2, .panel h3, .panel h4, .panel h5, .panel h6, .panel p, .panel li, .panel dl {
color: #333333;
}
.panel h1, .panel h2, .panel h3, .panel h4, .panel h5, .panel h6 {
line-height: 1;
margin-bottom: 0.625rem;
}
.panel h1.subheader, .panel h2.subheader, .panel h3.subheader, .panel h4.subheader, .panel h5.subheader, .panel h6.subheader {
line-height: 1.4;
}
.panel.callout {
border-style: solid;
border-width: 1px;
border-color: #e9f4c7;
margin-bottom: 1.25rem;
padding: 1.25rem;
background: #fbfdf5;
color: #333333;
}
.panel.callout >:first-child {
margin-top: 0;
}
.panel.callout >:last-child {
margin-bottom: 0;
}
.panel.callout h1, .panel.callout h2, .panel.callout h3, .panel.callout h4, .panel.callout h5, .panel.callout h6, .panel.callout p, .panel.callout li, .panel.callout dl {
color: #333333;
}
.panel.callout h1, .panel.callout h2, .panel.callout h3, .panel.callout h4, .panel.callout h5, .panel.callout h6 {
line-height: 1;
margin-bottom: 0.625rem;
}
.panel.callout h1.subheader, .panel.callout h2.subheader, .panel.callout h3.subheader, .panel.callout h4.subheader, .panel.callout h5.subheader, .panel.callout h6.subheader {
line-height: 1.4;
}
.panel.callout a:not(.button) {
color: #bada55;
}
.panel.radius {
border-radius: 3px;
}
blockquote {
border-style: solid;
border-width: 1px;
border-color: #d7d7d7;
margin: 0 auto;
margin-bottom: 1.25rem;
padding: 1.25rem;
background: #f2f2f2;
color: #333333;
quotes: "\201C""\201D""\2018""\2019";
display: block;
width: 100%;
}
blockquote:before {
color: #ccc;
content: open-quote;
font-size: 4em;
line-height: 0.1em;
margin-right: 0.25em;
vertical-align: -0.4em;
}
blockquote p:first-child {
display: inline;
}