This repository was archived by the owner on Dec 11, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +20
-4
lines changed Expand file tree Collapse file tree 2 files changed +20
-4
lines changed Original file line number Diff line number Diff line change 65
65
66
66
hr {
67
67
border : 0 ;
68
- border-bottom : 1px solid #999 ;
68
+ border-bottom : 1px solid $hr-border-color ;
69
69
}
70
70
71
71
blockquote {
72
72
margin : 0 ;
73
73
padding-left : 1em ;
74
74
position : relative ;
75
- border-left : 4px solid #eee ; // TODO replace with color variable
75
+ border-left : 4px solid $blockquote- color;
76
76
font-style : italic ;
77
77
}
78
78
79
79
pre {
80
80
padding : 16px 20px ;
81
- background : #f7f7f7 ;
81
+ background : $pre-bgcolor ;
82
82
font : normal 12px / 1.4 $monospace ;
83
83
}
84
84
@@ -121,7 +121,7 @@ strong {
121
121
}
122
122
123
123
code {
124
- background : #f2f2f2 ; // TODO replace with color variable
124
+ background : $code-background ;
125
125
font-size : em ( 16px );
126
126
padding : em ( 4px , 16px ) em ( 8px , 16px );
127
127
border-radius : 3px ;
Original file line number Diff line number Diff line change @@ -52,6 +52,22 @@ chassis.typography = {
52
52
sans : {
53
53
name : "Font Family - Sans" ,
54
54
value : "Helvetica, Arial, sans-serif"
55
+ } ,
56
+ "blockquote-color" : {
57
+ name : "blockquote color" ,
58
+ value : "#eee"
59
+ } ,
60
+ "code-background" : {
61
+ name : "Code Background Color" ,
62
+ value : "#F2F2F2"
63
+ } ,
64
+ "pre-bgcolor" : {
65
+ name : "Pre Background Color" ,
66
+ value : "#f7f7f7"
67
+ } ,
68
+ "hr-border-color" : {
69
+ name : "Horizontal Rule Border Color" ,
70
+ value : "#999"
55
71
}
56
72
} ;
57
73
You can’t perform that action at this time.
0 commit comments