1
0
Fork 0

add contact info

master
Rostyslav Hnatyshyn 2 weeks ago
parent 5d0977c7cd
commit be1835b212
  1. 21
      css/default.scss
  2. 11
      templates/default.html

@ -5,13 +5,15 @@ $themes: (
"background": #F3F8F1, "background": #F3F8F1,
"primary": #D7263D, "primary": #D7263D,
"secondary": #984EA3, "secondary": #984EA3,
"text": black "text": black,
"filter": invert(0)
), ),
"dark": ( "dark": (
"primary": #88d498, "primary": #88d498,
"secondary": #db5375, "secondary": #db5375,
"background": #161616, "background": #161616,
"text": white "text": white,
"filter": invert(1)
) )
); );
@ -211,6 +213,21 @@ article .header {
} }
} }
.svg-img {
border: none;
margin: none;
filter: var(--filter);
height: 1.4rem;
display: inline;
}
footer {
font-size: 1.4rem;
border-top: 1px dotted;
text-align: left;
align-content: left;
}
img { img {
border: 1px solid; border: 1px solid;
margin: auto; margin: auto;

@ -48,5 +48,16 @@
<h1>$title$</h1> <h1>$title$</h1>
$body$ $body$
</main> </main>
<footer>
<i>
Contact:
</i>
<div>
<img class="svg-img" src="../images/email.svg"/>
</div>
<div>
<img class="svg-img" src="../images/asu_email.svg"/>
</div>
</footer>
</body> </body>
</html> </html>

Loading…
Cancel
Save