Skip to content

Commit a2119ab

Browse files
committed
add content footer into three versions
1 parent fba1ece commit a2119ab

File tree

6 files changed

+33
-0
lines changed

6 files changed

+33
-0
lines changed

html-transparent-dark/src/partials/layout.hbs

+3
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@
3636
{{#block "app_content"}}
3737
Here goes the content
3838
{{/block}}
39+
<footer class="content-footer">
40+
Light Blue 4.0 Ajax Version - Made by <a href="https://flatlogic.com" rel="nofollow noopener noreferrer" target="_blank">Flatlogic</a>
41+
</footer>
3942
</div>
4043
<div class="loader-wrap hiding hide">
4144
<i class="fa fa-circle-o-notch fa-spin"></i>

html-transparent-dark/src/sass/_base.scss

+8
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,7 @@ $i: 1;
319319

320320
/*content except of header*/
321321
.content{
322+
position: relative;
322323
padding: 25px 2.5641%;
323324
@include transition(margin-top .35s ease, opacity .2s);
324325
max-width: none;
@@ -328,6 +329,13 @@ $i: 1;
328329
&.hiding{
329330
opacity: 0;
330331
}
332+
333+
.content-footer {
334+
position: absolute;
335+
bottom: -85px;
336+
color: $text-muted;
337+
338+
}
331339
}
332340

333341

html-transparent/src/partials/layout.hbs

+3
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@
3636
{{#block "app_content"}}
3737
Here goes the content
3838
{{/block}}
39+
<footer class="content-footer">
40+
Light Blue 4.0 Ajax Version - Made by <a href="https://flatlogic.com" rel="nofollow noopener noreferrer" target="_blank">Flatlogic</a>
41+
</footer>
3942
</div>
4043
<div class="loader-wrap hiding hide">
4144
<i class="fa fa-circle-o-notch fa-spin"></i>

html-transparent/src/sass/_base.scss

+8
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,7 @@ $i: 1;
319319

320320
/*content except of header*/
321321
.content{
322+
position: relative;
322323
padding: 25px 2.5641%;
323324
@include transition(margin-top .35s ease, opacity .2s);
324325
max-width: none;
@@ -328,6 +329,13 @@ $i: 1;
328329
&.hiding{
329330
opacity: 0;
330331
}
332+
333+
.content-footer {
334+
position: absolute;
335+
bottom: -85px;
336+
color: $text-muted;
337+
338+
}
331339
}
332340

333341

html-white/src/partials/layout.hbs

+3
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@
3636
{{#block "app_content"}}
3737
Here goes the content
3838
{{/block}}
39+
<footer class="content-footer">
40+
Light Blue 4.0 Ajax Version - Made by <a href="https://flatlogic.com" rel="nofollow noopener noreferrer" target="_blank">Flatlogic</a>
41+
</footer>
3942
</div>
4043
<div class="loader-wrap hiding hide">
4144
<i class="fa fa-circle-o-notch fa-spin"></i>

html-white/src/sass/_base.scss

+8
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,7 @@ $i: 1;
319319

320320
/*content except of header*/
321321
.content{
322+
position: relative;
322323
padding: 25px 2.5641%;
323324
@include transition(margin-top .35s ease, opacity .2s);
324325
max-width: none;
@@ -328,6 +329,13 @@ $i: 1;
328329
&.hiding{
329330
opacity: 0;
330331
}
332+
333+
.content-footer {
334+
position: absolute;
335+
bottom: -85px;
336+
color: $text-muted;
337+
338+
}
331339
}
332340

333341

0 commit comments

Comments
 (0)