]> git.immae.eu Git - github/wallabag/wallabag.git/blame - app/Resources/static/themes/material/css/article.scss
Fix according to review
[github/wallabag/wallabag.git] / app / Resources / static / themes / material / css / article.scss
CommitLineData
64f81bc3
TC
1/* ==========================================================================
2 Article
3 ========================================================================== */
4
5#article {
6 font-size: 20px;
7 margin: 0 auto;
8 max-width: 45em;
9
10 article {
11 color: #424242;
12 font-size: 18px;
13 line-height: 1.7em;
14
15 h1,
16 h2,
17 h3,
18 h4,
19 h5,
20 h6 {
21 color: #212121;
22
23 strong {
24 font-weight: 500;
25 }
26 }
27
28 h6 {
29 font-size: 1.2rem;
30 }
31
32 h5 {
33 font-size: 1.6rem;
34 }
35
36 h4 {
37 font-size: 1.9rem;
38 }
39
40 h3 {
41 font-size: 2.2rem;
42 }
43
44 h2 {
45 font-size: 2.5rem;
46 }
47
48 h1 {
49 font-size: 2.7rem;
50 }
51
52 a {
53 border-bottom: 1px dotted #03a9f4;
54 text-decoration: none;
55 }
56
57 a:hover {
58 border-bottom-style: solid;
59 }
60
61 ul {
62 padding-left: 30px;
63 }
64
65 ul,
66 ul li {
67 list-style-type: disc;
68 }
69
70 blockquote {
71 font-style: italic;
72 }
73
74 strong {
75 font-weight: bold;
76 }
77 }
78
79 img,
80 figure {
81 max-width: 100%;
82 height: auto;
83 }
84
85 pre {
86 box-sizing: border-box;
87 margin: 0 0 1.75em;
88 border: #e3f2fd 1px solid;
89 width: 100%;
90 padding: 10px;
91 font-family: monospace;
92 font-size: 0.8em;
93 white-space: pre;
94 overflow: auto;
95 background: #f5f5f5;
96 border-radius: 3px;
97 }
98
99 > header > h1 {
100 font-size: 2em;
101 margin: 2.1rem 0 0.68rem;
102 }
103
104 aside {
105 .tools {
106 font-size: 0.8em;
107 display: flex;
108 flex-flow: row wrap;
64f81bc3
TC
109
110 li {
111 display: inline-flex;
112 vertical-align: middle;
2003ffa9 113 margin: 0 5px;
64f81bc3
TC
114 }
115
116 a {
117 color: #000;
118 text-decoration: none;
119 }
120 }
121
122 #list {
123 float: right;
2003ffa9 124 margin: -5px 15px auto;
64f81bc3
TC
125 }
126
127 .chip {
128 background-color: $blueAccentColor;
129 padding: 0 15px 0 10px;
130 margin: auto 2px;
131
132 a,
133 i {
134 color: #fff;
135 }
2003ffa9
TC
136
137 i.material-icons {
138 float: right;
139 font-size: 20px;
140 line-height: 32px;
141 padding-left: 8px;
142 }
64f81bc3
TC
143 }
144 }
145}
146
147.reader-mode {
2003ffa9 148 width: 70px !important;
64f81bc3
TC
149 transition: width 0.2s ease;
150
151 .collapsible-body {
152 height: 0;
153 overflow: hidden;
154 }
155
156 span {
157 opacity: 0;
158 transition: opacity 0.2s ease;
159 }
64f81bc3 160
2003ffa9
TC
161 &:hover {
162 width: 260px !important;
64f81bc3 163
2003ffa9
TC
164 .collapsible-body {
165 height: auto;
64f81bc3 166
2003ffa9
TC
167 li a i.material-icons {
168 margin: auto 5px auto 0;
169 }
170 }
171
172 span {
173 opacity: 1;
174 }
64f81bc3
TC
175 }
176}
177
178.progress {
179 position: fixed;
180 top: 0;
181 width: 100%;
182 height: 3px;
183 margin: 0;
184 z-index: 9999;
185}