aboutsummaryrefslogtreecommitdiff
path: root/sass/_footer.scss
diff options
context:
space:
mode:
Diffstat (limited to 'sass/_footer.scss')
-rw-r--r--sass/_footer.scss35
1 files changed, 35 insertions, 0 deletions
diff --git a/sass/_footer.scss b/sass/_footer.scss
new file mode 100644
index 0000000..cf944e1
--- /dev/null
+++ b/sass/_footer.scss
@@ -0,0 +1,35 @@
+footer {
+ margin-top: 200*$px;
+}
+.footer {
+ margin: 100*$px auto;
+ text-align: center;
+}
+.social-icons {
+ & a {
+ cursor: pointer;
+ outline: none;
+ &:link, &:visited {
+ color: inherit;
+ text-decoration: none;
+ transition: transform .2s;
+ }
+ &:hover, &:active {
+ color: var(--color-primary);
+ transform: scale(1.05);
+ }
+ &:focus {
+ color: var(--color-accent);
+ transform: scale(1.05);
+ }
+ }
+ & svg {
+ max-width: 30*$px;
+ max-height: 30*$px;
+ fill: currentColor;
+ }
+ margin-top: 20*$px;
+ display: flex;
+ gap: 40*$px;
+ justify-content: center;
+}