Skip to content
Snippets Groups Projects
Unverified Commit ae46e41b authored by maria-moroz's avatar maria-moroz Committed by GitHub
Browse files

Merge branch 'main' into origin/feature/one_card

parents 9323bb5c 5f54026e
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,7 @@
/>
</head>
<body>
<include src = "./partials/footer.html"></include>
<!-- Так добавляются фрагменты в главные HTML-файлы страниц. -->
<!-- <include src="./partials/example.html"></include> -->
<include src="./partials/one-card-preview.html"></include>
......
<footer>
<div class="footer_container container">
<p class="footer_text">
&copy; 2022 | All Rights Reserved | Developed with<svg
class="footer_icon"
width="14px"
height="12.88px"
>
<use href="./images/sprite.svg#heart"></use></svg>by <a href="#"> GoIT Students </a>
</p>
</div>
</footer>
footer {
background-color: $secondary-white-color;
}
.footer_container {
padding-top: 30px;
padding-bottom: 30px;
}
.footer_text {
color: $footer-text-color;
font-size: 16px;
font-weight: 400;
text-align: center;
line-height: 1.14;
margin-top: 0px;
margin-bottom: 0px;
@media screen and (max-width: 768px) {
width: 270px;
margin-left: auto;
margin-right: auto;
}
}
.footer_icon {
margin-left: 10px;
margin-right: 10px
}
\ No newline at end of file
......@@ -4,4 +4,6 @@ $secondary-white-color: #F7F7F7;
$primary-text-color: #000000;
$secondary-text-color: #8C8C8C;
$footer-text-color: #545454;
$alert-color: #FF001B;
\ No newline at end of file
$alert-color: #FF001B;
$transition-duration: 250ms;
$transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
\ No newline at end of file
......@@ -6,5 +6,4 @@
// Стили для файла с примером HTML-фрагмента
@import './variables';
@import './utility-classes';
@import './components/one-card-preview';
@import "./footer";
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment