Skip to content

Commit 33957eb

Browse files
committed
footer
1 parent b17b114 commit 33957eb

File tree

4 files changed

+53
-7
lines changed

4 files changed

+53
-7
lines changed

blocks/index.css

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

blocks/index.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

blocks/index.scss

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,5 +72,23 @@
7272
}
7373
}
7474

75+
.footer {
76+
margin-top: 40px;
77+
padding: 30px 0;
78+
text-align: center;
79+
80+
&__link {
81+
color: inherit;
82+
font-size: inherit;
83+
text-decoration: underline;
84+
font-family: 'Roboto Mono', monospace;
85+
86+
transition: .3s ease;
87+
&:hover {
88+
text-decoration: none
89+
}
90+
}
91+
}
92+
7593

7694

index.html

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,27 +36,31 @@ <h1 class="main__title">Small JavaScript Projects</h1>
3636
</div>
3737

3838
<div class="cards-block__item">
39-
<a href="pages/counter.html" class="cards-block__image">
39+
<a href="pages/sidebar.html" class="cards-block__image">
4040
<img src="images/main-page/03.png" alt="Reviews">
4141
</a>
4242
<a href="pages/counter.html"
4343
class="cards-block__title">Sidebar</a>
44-
<p class="cards-block__subtitle">...</p>
44+
<p class="cards-block__subtitle">Side menu. User can
45+
open and close it at any time.
46+
</p>
4547
</div>
4648

4749
<div class="cards-block__item">
4850
<a href="pages/counter.html" class="cards-block__image">
4951
<img src="images/main-page/04.png" alt="Reviews">
5052
</a>
51-
<a href="pages/counter.html" class="cards-block__title">Reviews</a>
53+
<a href="pages/counter.html"
54+
class="cards-block__title">Modal</a>
5255
<p class="cards-block__subtitle">...</p>
5356
</div>
5457

5558
<div class="cards-block__item">
5659
<a href="pages/counter.html" class="cards-block__image">
5760
<img src="images/main-page/05.png" alt="Reviews">
5861
</a>
59-
<a href="pages/counter.html" class="cards-block__title">Reviews</a>
62+
<a href="pages/counter.html"
63+
class="cards-block__title">Video</a>
6064
<p class="cards-block__subtitle">...</p>
6165
</div>
6266

@@ -72,15 +76,17 @@ <h1 class="main__title">Small JavaScript Projects</h1>
7276
<a href="pages/counter.html" class="cards-block__image">
7377
<img src="images/main-page/07.png" alt="Reviews">
7478
</a>
75-
<a href="pages/counter.html" class="cards-block__title">Reviews</a>
79+
<a href="pages/counter.html"
80+
class="cards-block__title">Countdown</a>
7681
<p class="cards-block__subtitle">...</p>
7782
</div>
7883

7984
<div class="cards-block__item">
8085
<a href="pages/counter.html" class="cards-block__image">
8186
<img src="images/main-page/08.png" alt="Reviews">
8287
</a>
83-
<a href="pages/counter.html" class="cards-block__title">Reviews</a>
88+
<a href="pages/counter.html"
89+
class="cards-block__title">Lorem Generator</a>
8490
<p class="cards-block__subtitle">...</p>
8591
</div>
8692

@@ -89,6 +95,12 @@ <h1 class="main__title">Small JavaScript Projects</h1>
8995
</div>
9096
</div>
9197
</main>
98+
99+
<footer class="footer">
100+
<div class="container">
101+
<a class="footer__link" href="https://github.com/zhuk1707/Small_JavaScript_Projects">GitHub</a>
102+
</div>
103+
</footer>
92104
</div>
93105

94106
<script src="scripts/counter.js"></script>

0 commit comments

Comments
 (0)