forked from newscoop/theme-Liquid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aes_custom_css.css
130 lines (105 loc) · 3 KB
/
aes_custom_css.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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/*!
*
* AES custom stylesheet for Liquid. Copy this code to plugins->editor->Custom styles
* Adapt the look and feel of the article content in the AES
*
* Important! This only works with default set of fields defined in config
*
*/
@import url(http://fonts.googleapis.com/css?family=Oswald&subset=latin,latin-ext);
/* Title */
.authoring-environment .article-field.title {
font-size: 2em;
font-family: 'Oswald', Tahoma, Arial, sans-serif;
color: #475f77;
line-height: 1.2em;
padding-bottom: 10px;
text-transform: uppercase;
}
/* Deck */
.authoring-environment .article-field.deck {
font-family: 'Roboto', Arial, Helvetica, sans-serif;
font-size: 16px;
font-weight: 500;
font-style: normal;
color: #333;
line-height: 140%;
}
/* Body text - Normal */
.authoring-environment .article-field.full_text {
font-family: Tahoma, Arial, sans-serif;
font-size: 16px;
/* body text size (normal) */
font-weight: 400;
/* Roboto: 300,400,500 or 700 */
font-style: normal;
/* normal, italic */
color: #606060;
line-height: 150%;
}
/* space between paragraphs */
.authoring-environment .main-article-container p {
padding-bottom: 6px;
}
/* Headings in article body */
.authoring-environment .main-article-container h1,
.authoring-environment .main-article-container h2,
.authoring-environment .main-article-container h3,
.authoring-environment .main-article-container h4,
.authoring-environment .main-article-container h5 {
margin:0;
padding:0;
}
/* Heading 1 */
.authoring-environment .main-article-container h1 {
font-size: 2.5em;
font-family: 'Oswald', Tahoma, Arial, sans-serif;
color: #00b4ff;
line-height: 1.2em;
padding-bottom: 10px;
text-transform: uppercase;
}
/* Heading 2 */
.authoring-environment .main-article-container h2 {
font-size: 2em;
font-family: 'Oswald', Tahoma, Arial, sans-serif;
color: #475f77;
line-height: 1.2em;
padding-bottom: 10px;
text-transform: uppercase;
}
/* Heading 3 */
.authoring-environment .main-article-container h3 {
font-size: 1.5em;
font-family: 'Oswald', Tahoma, Arial, sans-serif;
line-height: 1.3em;
padding-bottom: 5px;
text-transform: uppercase;
}
/* Heading 4 */
.authoring-environment .main-article-container h4 {
font-size: 1.2em;
font-family: 'Oswald', Tahoma, Arial, sans-serif;
}
/* Heading 5 */
.authoring-environment .main-article-container h5 {
font-size: 1em;
font-family: 'Oswald', Tahoma, Arial, sans-serif;
color: #00b4ff;
font-weight: 600;
}
/* blockquote */
.authoring-environment .main-article-container blockquote {
border-left: 3px solid #00b4ff;
margin: 1.5em 10px;
padding: 0.5em 10px;
font-size:1.2em;
font-weight:200;
font-style: italic;
quotes: "\201C""\201D""\2018""\2019";
}
/* ul, ol lists */
.authoring-environment .main-article-container section .aloha-editable ul,
.authoring-environment .main-article-container section .aloha-editable ol{
margin-left:20px;
}