materialize-jekyll 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: eee681f25d5f1e404b4cc6b289eb35411bd480ef
4
+ data.tar.gz: daaae9e787f51ba11b9d2d83ebcad3710f3f884f
5
+ SHA512:
6
+ metadata.gz: 4db9bf3b47f94e59fa6772a963c7c1617113b7fef872cc16bf833c1b0f135324fb7a133afa4ea50ac61b2a8b738ffce74e961f40cc5e6431bcae6964f53d1306
7
+ data.tar.gz: 909b8a26b0b646ca113f04ac6dc1169551f4de06244a74575707680b17c526bd576d6d888a50aac153c549aade2d8bc78072a371481270bbaa44d15eab666e80
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Victor Presumido
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,48 @@
1
+ # materialize-jekyll
2
+
3
+ Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes` and your sass in `_sass`. To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your Jekyll site's `Gemfile`:
10
+
11
+ ```ruby
12
+ gem "materialize-jekyll"
13
+ ```
14
+
15
+ And add this line to your Jekyll site's `_config.yml`:
16
+
17
+ ```yaml
18
+ theme: materialize-jekyll
19
+ ```
20
+
21
+ And then execute:
22
+
23
+ $ bundle
24
+
25
+ Or install it yourself as:
26
+
27
+ $ gem install materialize-jekyll
28
+
29
+ ## Usage
30
+
31
+ TODO: Write usage instructions here. Describe your available layouts, includes, and/or sass.
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
36
+
37
+ ## Development
38
+
39
+ To set up your environment to develop this theme, run `bundle install`.
40
+
41
+ Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
42
+
43
+ When your theme is released, only the files in `_layouts`, `_includes`, and `_sass` tracked with Git will be released.
44
+
45
+ ## License
46
+
47
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
48
+
@@ -0,0 +1,35 @@
1
+ <section class="row author brown lighten-4" itemprop="author">
2
+ <div class="col s12 m12" itemscope itemtype="http://schema.org/Person">
3
+ <div class="col s12 m4 offset-m1 l4 offset-l1">
4
+ <img itemprop="image" src="{{site.profile_img_url}}" alt="{{site.name}}" class="circle author-img responsive-img">
5
+ </div>
6
+ <div class="col s12 m7 author-info">
7
+ <h5 class="">Autor</h5>
8
+ <h3 class="white-text author-name">{{ site.name }}</h3>
9
+ <p class="white-text author-description">{{ site.user_description }}</p>
10
+ <div class="contact-info">
11
+ <a href="https://github.com/{{site.github_username}}" class="social-media-icon" target="_blank">
12
+ <div class="github-btn btn-white">
13
+ </div>
14
+ </a>
15
+ <a href="https://www.facebook.com/{{site.fb_username}}" class="social-media-icon" target="_blank">
16
+ <div class="fb-btn btn-white">
17
+ </div>
18
+ </a>
19
+ <a href="https://twitter.com/{{site.twitter_username}}" class="social-media-icon" target="_blank">
20
+ <div class="twitter-btn btn-white">
21
+ </div>
22
+ </a>
23
+ <a href="https://www.instagram.com/{{site.instagram_username}}" class="social-media-icon" target="_blank">
24
+ <div class="instagram-btn btn-white">
25
+ </div>
26
+ </a>
27
+ <a href="https://www.linkedin.com/in/{{site.linkedin_username}}" class="social-media-icon" target="_blank">
28
+ <div class="linkedin-btn btn-white">
29
+ </div>
30
+ </a>
31
+ </div>
32
+ </div>
33
+ </div>
34
+ </section>
35
+
@@ -0,0 +1,39 @@
1
+ <section class="comments container">
2
+ <div class="row">
3
+ <div class="col s12 m12">
4
+ <div class="card">
5
+ <div class="card-content">
6
+ <span class="card-title">Comments</span>
7
+ <div id="disqus_thread"></div>
8
+ </div>
9
+ </div>
10
+ </div>
11
+ </div>
12
+ </section>
13
+
14
+
15
+ <script type="text/javascript">
16
+ var disqus_loaded = false;
17
+ var disqus_config = function () {
18
+ this.page.url = '{{ site.url }}{{ site.baseurl }}{{ page.url }}';
19
+ this.page.identifier = '{{ page.id }}';
20
+ this.page.title = '{{ page.title }}';
21
+ };
22
+ function load_disqus()
23
+ {
24
+ disqus_loaded = true;
25
+ var disqus_shortname = '{{site.disqus_username}}';
26
+ var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
27
+ dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
28
+ dsq.setAttribute('data-timestamp', +new Date());
29
+ (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
30
+ var ldr = document.getElementById('disqus_loader');
31
+ };
32
+ window.onscroll = function(e) {
33
+ if ((window.innerHeight + window.scrollY) >= (document.body.offsetHeight - 800)) {
34
+ //hit bottom of page
35
+ if (disqus_loaded==false)
36
+ load_disqus()
37
+ }
38
+ };
39
+ </script>
@@ -0,0 +1,4 @@
1
+ {% assign months = "janeiro,fevereiro,março,abril,maio,junho,julho,agosto,setembro,outubro,novembro,dezembro" | split: "," %}
2
+ {% assign month_number = include.date | date: "%-m" | minus: 1 %}
3
+
4
+ {{ include.date | date: "%-d" }} de {{ months[month_number] }} de {{ include.date | date: "%Y" }}
@@ -0,0 +1,15 @@
1
+
2
+ <footer class="page-footer footer-copyright z-depth-6 brown lighten-1">
3
+ <div class="container">
4
+ <div class="center-align brown-text text-lighten-4">© 2016 Made with <img id="love" src="assets/images/love.png"> by Victor Presumido</div>
5
+ </div>
6
+ </footer>
7
+ <!-- Scripts-->
8
+ <script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
9
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.1/js/materialize.min.js"></script>
10
+ <script src="https://unpkg.com/scrollreveal/dist/scrollreveal.min.js"></script>
11
+ <script src="{{ "/assets/js/masonry.pkgd.min.js" | prepend: site.baseurl }}"></script>
12
+ <script src="{{ "/assets/js/init.js" | prepend: site.baseurl }}"></script>
13
+ </body>
14
+ </html>
15
+
@@ -0,0 +1,16 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>{% if page.title %}{{ page.title }} | {{ site.username }}{% else %}{{ site.title }}{% endif %}</title>
5
+ <meta name="description" content="{% if page.description %}{{ page.description | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
6
+
7
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
8
+ <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"/>
9
+ <!-- CSS -->
10
+ <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
11
+ <link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet">
12
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.1/css/materialize.min.css">
13
+
14
+ <link href="{{ "/assets/css/main.css" | prepend: site.baseurl }}" type="text/css" rel="stylesheet" media="screen,projection"/>
15
+ </head>
16
+ <body>
@@ -0,0 +1,28 @@
1
+
2
+ <div class="navbar-fixed">
3
+ <nav class="z-depth-5" role="navigation">
4
+ <div class="nav-wrapper main-nav brown lighten-1">
5
+ <a href="#" class="brand-logo">&lt;/&gt; {{ site.username }}</a>
6
+ <a href="#" data-activates="nav-mobile" class="button-collapse"><i class="material-icons brown-text text-lighten-4">menu</i></a>
7
+ <ul class="right hide-on-med-and-down">
8
+ {% for link in site.links %}
9
+ {% if link.external %}
10
+ <li><a class="brown-text text-lighten-4" href="{{ link.url }}">{{ link.title }}</a></li>
11
+ {% else %}
12
+ <li><a class="brown-text text-lighten-4" href="{{ site.url }}{{ site.baseurl }}{{ link.url }}">{{ link.title }}</a></li>
13
+ {% endif %}
14
+ {% endfor %}
15
+ </ul>
16
+
17
+ <ul class="side-nav" id="nav-mobile" >
18
+ {% for link in site.links %}
19
+ {% if link.external %}
20
+ <li><a href="{{ link.url }}">{{ link.title }}</a></li>
21
+ {% else %}
22
+ <li><a href="{{ site.url }}{{ site.baseurl }}{{ link.url }}">{{ link.title }}</a></li>
23
+ {% endif %}
24
+ {% endfor %}
25
+ </ul>
26
+ </div>
27
+ </nav>
28
+ </div>
@@ -0,0 +1,15 @@
1
+ <section class="row share">
2
+ <div class="col s12 valign-wrapper center-align">
3
+ <div class="col s10 offset-s1">
4
+ <p class="brown-text text-lighten-3 share-header">Compartilhe</p>
5
+ <a href="https://www.facebook.com/sharer/sharer.php?u={{ site.url }}{{ site.baseurl }}{{ page.url }}" class="btn-floating btn-large waves-effect waves-light fb-color" onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;" title="Compartilhar no Facebook">
6
+ <div class="fb-btn btn-white ">
7
+ </div>
8
+ </a>
9
+ <a href="https://twitter.com/intent/tweet?text=&quot;{{ page.twitter_text }}&quot;%20{{ site.url }}{{ site.baseurl }}{{ page.url }}%20via%20&#64;{{ site.twitter_username }}&hashtags={% for tag in page.tags %}{{tag}},{% endfor %}" class="btn-floating btn-large waves-effect waves-light twitter-color" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;" title="Compartilhar no Twitter" >
10
+ <div class="twitter-btn btn-white">
11
+ </div>
12
+ </a>
13
+ </div>
14
+ </div>
15
+ </section>
@@ -0,0 +1,8 @@
1
+ ---
2
+ # Jekyll layout that compresses HTML
3
+ # v1.4.0
4
+ # http://jch.penibelst.de/
5
+ # © 2014–2015 Anatol Broder
6
+ # MIT License
7
+ ---
8
+ {% if site.compress_html.ignore.envs contains jekyll.environment %}{{ content }}{% else %}{% capture _content %}{{ content }}{% endcapture %}{% assign _profile = site.compress_html.profile %}{% if site.compress_html.endings == "all" %}{% assign _endings = "html head body li dt dd p rt rp optgroup option colgroup caption thead tbody tfoot tr td th" | split: " " %}{% else %}{% assign _endings = site.compress_html.endings %}{% endif %}{% for _element in _endings %}{% capture _end %}</{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _end %}{% endfor %}{% if _profile and _endings %}{% assign _profile_endings = _content | size | plus: 1 %}{% endif %}{% assign _pre_befores = _content | split: "<pre" %}{% assign _content = "" %}{% for _pre_before in _pre_befores %}{% assign _pres = _pre_before | split: "</pre>" %}{% case _pres.size %}{% when 2 %}{% capture _content %}{{ _content }}<pre{{ _pres.first }}</pre>{{ _pres.last | split: " " | join: " " }}{% endcapture %}{% when 1 %}{% capture _content %}{{ _content }}{{ _pres.last | split: " " | join: " " }}{% endcapture %}{% endcase %}{% endfor %}{% if _profile %}{% assign _profile_collapse = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.comments == "all" %}{% assign _comments = "<!-- -->" | split: " " %}{% else %}{% assign _comments = site.compress_html.comments %}{% endif %}{% if _comments.size == 2 %}{% assign _comment_befores = _content | split: _comments.first %}{% for _comment_before in _comment_befores %}{% assign _comment_content = _comment_before | split: _comments.last | first %}{% if _comment_content %}{% capture _comment %}{{ _comments.first }}{{ _comment_content }}{{ _comments.last }}{% endcapture %}{% assign _content = _content | remove: _comment %}{% endif %}{% endfor %}{% if _profile %}{% assign _profile_comments = _content | size | plus: 1 %}{% endif %}{% endif %}{% if site.compress_html.clippings == "all" %}{% assign _clippings = "html head title base link meta style body article section nav aside h1 h2 h3 h4 h5 h6 hgroup header footer address p hr blockquote ol ul li dl dt dd figure figcaption main div table caption colgroup col tbody thead tfoot tr td th" | split: " " %}{% else %}{% assign _clippings = site.compress_html.clippings %}{% endif %}{% for _element in _clippings %}{% assign _edges = " <e;<e; </e>;</e>;</e> ;</e>" | replace: "e", _element | split: ";" %}{% assign _content = _content | replace: _edges[0], _edges[1] | replace: _edges[2], _edges[3] | replace: _edges[4], _edges[5] %}{% endfor %}{% if _profile and _clippings %}{% assign _profile_clippings = _content | size | plus: 1 %}{% endif %}{{ _content }}{% if _profile %} <table id="compress_html_profile_{{ site.time | date: "%Y%m%d" }}" class="compress_html_profile"> <thead> <tr> <td>Step <td>Bytes <tbody> <tr> <td>raw <td>{{ content | size }}{% if _profile_endings %} <tr> <td>endings <td>{{ _profile_endings }}{% endif %}{% if _profile_collapse %} <tr> <td>collapse <td>{{ _profile_collapse }}{% endif %}{% if _profile_comments %} <tr> <td>comments <td>{{ _profile_comments }}{% endif %}{% if _profile_clippings %} <tr> <td>clippings <td>{{ _profile_clippings }}{% endif %} </table>{% endif %}{% endif %}
@@ -0,0 +1,13 @@
1
+ {% include header.html %}
2
+ {% include navbar.html %}
3
+
4
+ <div class="section no-pad-bot">
5
+ <div class="container blog-posts">
6
+ <div id="masonry-grid" class="row">
7
+ {{ content }}
8
+ </div>
9
+ </div>
10
+ </div>
11
+
12
+
13
+ {% include footer.html %}
@@ -0,0 +1,13 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <div class="post">
5
+
6
+ <header class="post-header">
7
+ <h1 class="post-title">{{ page.title }}</h1>
8
+ </header>
9
+
10
+ <article class="post-content">
11
+ {{ content }}
12
+ </article>
13
+ </div>
@@ -0,0 +1,23 @@
1
+ {% include header.html %}
2
+ {% include navbar.html %}
3
+
4
+ <header id="top-bar" class="main-top"></header>
5
+ <div class="container container-main">
6
+ <div class="post content">
7
+ <div class="row">
8
+ <div class="col s12 m12">
9
+ <div class="col s10 offset-s1 " >
10
+ <p class="grey-text text-lighten-1 valign-wrapper"><i class="material-icons">today </i> &nbsp; {% include date.html date=page.date %}</p>
11
+ <h2 class="post-title">{{ page.title }}</h2>
12
+ <p class="flow-text grey-text text-lighten-1">{{ page.introduction }}</p>
13
+ <img class="center-align" style="width: 100%;" src="{{ page.image }}">
14
+ {{ content }}
15
+ </div>
16
+ </div>
17
+ </div>
18
+ {% include share.html %}
19
+ {% include author.html %}
20
+ </div>
21
+ </div>
22
+ {% include comments.html %}
23
+ {% include footer.html %}
data/_sass/.DS_Store ADDED
Binary file
@@ -0,0 +1,223 @@
1
+ .highlight table td { padding: 5px; }
2
+ .highlight table pre { margin: 0; }
3
+ .highlight .c, .highlight .cd {
4
+ color: #5e5d83;
5
+ font-style: italic;
6
+ }
7
+ .highlight .cm {
8
+ color: #5e5d83;
9
+ font-style: italic;
10
+ }
11
+ .highlight .c1 {
12
+ color: #5e5d83;
13
+ font-style: italic;
14
+ }
15
+ .highlight .cp {
16
+ color: #465457;
17
+ font-weight: bold;
18
+ }
19
+ .highlight .cs {
20
+ color: #465457;
21
+ font-weight: bold;
22
+ font-style: italic;
23
+ }
24
+ .highlight .err {
25
+ color: #f8f8f2;
26
+ background-color: #403d3d;
27
+ }
28
+ .highlight .gi {
29
+ color: #a6e22e;
30
+ }
31
+ .highlight .gd {
32
+ color: #f92672;
33
+ }
34
+ .highlight .ge {
35
+ color: #1b1d1e;
36
+ font-style: italic;
37
+ }
38
+ .highlight .gr {
39
+ color: #f92672;
40
+ }
41
+ .highlight .gt {
42
+ color: #f92672;
43
+ }
44
+ .highlight .gh {
45
+ color: #403d3d;
46
+ }
47
+ .highlight .go {
48
+ color: #403d3d;
49
+ }
50
+ .highlight .gp {
51
+ color: #66d9ef;
52
+ }
53
+ .highlight .gs {
54
+ font-weight: bold;
55
+ }
56
+ .highlight .gu {
57
+ color: #465457;
58
+ }
59
+ .highlight .k, .highlight .kv {
60
+ color: #66d9ef;
61
+ font-weight: bold;
62
+ }
63
+ .highlight .kc {
64
+ color: #66d9ef;
65
+ font-weight: bold;
66
+ }
67
+ .highlight .kd {
68
+ color: #66d9ef;
69
+ font-weight: bold;
70
+ }
71
+ .highlight .kp {
72
+ color: #66d9ef;
73
+ font-weight: bold;
74
+ }
75
+ .highlight .kr {
76
+ color: #66d9ef;
77
+ font-weight: bold;
78
+ }
79
+ .highlight .kt {
80
+ color: #66d9ef;
81
+ font-weight: bold;
82
+ }
83
+ .highlight .kn {
84
+ color: #f92672;
85
+ font-weight: bold;
86
+ }
87
+ .highlight .ow {
88
+ color: #f92672;
89
+ font-weight: bold;
90
+ }
91
+ .highlight .o {
92
+ color: #f92672;
93
+ font-weight: bold;
94
+ }
95
+ .highlight .mf {
96
+ color: #af87ff;
97
+ }
98
+ .highlight .mh {
99
+ color: #af87ff;
100
+ }
101
+ .highlight .il {
102
+ color: #af87ff;
103
+ }
104
+ .highlight .mi {
105
+ color: #af87ff;
106
+ }
107
+ .highlight .mo {
108
+ color: #af87ff;
109
+ }
110
+ .highlight .m, .highlight .mb, .highlight .mx {
111
+ color: #af87ff;
112
+ }
113
+ .highlight .se {
114
+ color: #af87ff;
115
+ }
116
+ .highlight .sb {
117
+ color: #d7d787;
118
+ }
119
+ .highlight .sc {
120
+ color: #d7d787;
121
+ }
122
+ .highlight .sd {
123
+ color: #d7d787;
124
+ }
125
+ .highlight .s2 {
126
+ color: #d7d787;
127
+ }
128
+ .highlight .sh {
129
+ color: #d7d787;
130
+ }
131
+ .highlight .si {
132
+ color: #d7d787;
133
+ }
134
+ .highlight .sx {
135
+ color: #d7d787;
136
+ }
137
+ .highlight .sr {
138
+ color: #d7d787;
139
+ }
140
+ .highlight .s1 {
141
+ color: #d7d787;
142
+ }
143
+ .highlight .ss {
144
+ color: #d7d787;
145
+ }
146
+ .highlight .s {
147
+ color: #d7d787;
148
+ }
149
+ .highlight .na {
150
+ color: #a6e22e;
151
+ }
152
+ .highlight .nc {
153
+ color: #a6e22e;
154
+ font-weight: bold;
155
+ }
156
+ .highlight .nd {
157
+ color: #a6e22e;
158
+ font-weight: bold;
159
+ }
160
+ .highlight .ne {
161
+ color: #a6e22e;
162
+ font-weight: bold;
163
+ }
164
+ .highlight .nf {
165
+ color: #a6e22e;
166
+ font-weight: bold;
167
+ }
168
+ .highlight .no {
169
+ color: #66d9ef;
170
+ }
171
+ .highlight .bp {
172
+ color: #f8f8f2;
173
+ }
174
+ .highlight .nb {
175
+ color: #f8f8f2;
176
+ }
177
+ .highlight .ni {
178
+ color: #f8f8f2;
179
+ }
180
+ .highlight .nn {
181
+ color: #f8f8f2;
182
+ }
183
+ .highlight .vc {
184
+ color: #f8f8f2;
185
+ }
186
+ .highlight .vg {
187
+ color: #f8f8f2;
188
+ }
189
+ .highlight .vi {
190
+ color: #f8f8f2;
191
+ }
192
+ .highlight .nv {
193
+ color: #f8f8f2;
194
+ }
195
+ .highlight .w {
196
+ color: #f8f8f2;
197
+ }
198
+ .highlight .nl {
199
+ color: #f8f8f2;
200
+ font-weight: bold;
201
+ }
202
+ .highlight .nt {
203
+ color: #f92672;
204
+ }
205
+ .highlight {
206
+ width: 100vw;
207
+ padding: 10px;
208
+ position: relative;
209
+ left: -20%;
210
+ right: 0%;
211
+ margin-right: -50vw;
212
+ color: #f8f8f2;
213
+ background-color: #222;
214
+ }
215
+
216
+ @media only screen and (max-width : 600px) {
217
+ .highlight {
218
+ left: calc(28% - 42vw);
219
+ }
220
+ }
221
+ .highlighter-rouge{
222
+ background-color: #eee;
223
+ }