Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/mertbakir/resume-a4.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/css/_footer.scss')
-rw-r--r--assets/css/_footer.scss35
1 files changed, 35 insertions, 0 deletions
diff --git a/assets/css/_footer.scss b/assets/css/_footer.scss
new file mode 100644
index 0000000..b37cb14
--- /dev/null
+++ b/assets/css/_footer.scss
@@ -0,0 +1,35 @@
+footer {
+ width: 8.25in;
+ margin: 36px auto;
+ text-align: center;
+ display: flex;
+ flex-flow: column;
+
+ .footer-item {
+ margin-bottom: 0.5rem;
+
+ a {
+ span {
+ font-weight: 700;
+ }
+
+ color: $turk;
+ padding: 0 4px;
+
+ &:hover {
+ color: white;
+ background-color: $turk;
+ text-decoration: none;
+ transition: all 0.35s ease-out;
+ transition-property: all 0.35s ease-out;
+ -webkit-transition-property: all 0.35s ease-out;
+ -moz-transition-property: all 0.35s ease-out;
+ -o-transition-property: all 0.35s ease-out;
+ }
+ }
+
+ .footer-link:not(:last-child)::after {
+ content: "\00B7";
+ }
+ }
+}