Skip to content

Commit 452fd19

Browse files
committed
Formatted stylesheet according to Ignia standards
Applied standard SCSS headers, aligned values at 32 characters.
1 parent b3966c5 commit 452fd19

1 file changed

Lines changed: 31 additions & 11 deletions

File tree

Lines changed: 31 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,50 @@
1+
//==============================================================================================
2+
// CKEDITOR
3+
//----------------------------------------------------------------------------------------------
4+
// Custom stylesheet to be used within the CKEditor. As this implementation should be
5+
// implementation agnostic, this defines a very basic set of style preferences. In practice, we
6+
// expect most implementions will want to establish a custom configuration, style set, and style
7+
// sheet for CKEditor, thus overriding this implementation.
8+
//==============================================================================================
9+
10+
//----------------------------------------------------------------------------------------------
11+
// FONTS
12+
//----------------------------------------------------------------------------------------------
113
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400&display=swap');
14+
15+
//----------------------------------------------------------------------------------------------
16+
// BODY
17+
//----------------------------------------------------------------------------------------------
218
body {
3-
background-color: #FFF;
4-
font-family: "Lato", Helvetica, Arial, sans-serif;
5-
font-size: 16px;
6-
color: #333;
19+
background-color : #FFF;
20+
font-family : "Lato", Helvetica, Arial, sans-serif;
21+
font-size : 16px;
22+
color : #333;
723
}
24+
25+
//----------------------------------------------------------------------------------------------
26+
// HEADINGS
27+
//----------------------------------------------------------------------------------------------
828
h1,
929
h2,
1030
h3 {
11-
font-weight: 300;
31+
font-weight : 300;
1232
}
1333
h1 {
14-
font-size: 32px;
34+
font-size : 32px;
1535
}
1636
h2 {
17-
font-size: 28px;
37+
font-size : 28px;
1838
}
1939
h3 {
20-
font-size: 24px;
40+
font-size : 24px;
2141
}
2242
h4 {
23-
font-size: 18px;
43+
font-size : 18px;
2444
}
2545
h5 {
26-
font-size: 16px;
46+
font-size : 16px;
2747
}
2848
h6 {
29-
font-size: 14px;
49+
font-size : 14px;
3050
}

0 commit comments

Comments
 (0)