aboutsummaryrefslogtreecommitdiff
path: root/_sass/_layout.scss
diff options
context:
space:
mode:
authorValentin Popov <valentineus@gmail.com>2018-04-03 03:37:34 +0300
committerValentin Popov <valentineus@gmail.com>2018-04-03 03:37:34 +0300
commit927577f9f71e103be58196f8031a9fcd9e178ce9 (patch)
tree8213f7905c226e730714f4340aa749765d625f10 /_sass/_layout.scss
parente579c803deb1ed1879d3db5de54730e325fd58af (diff)
downloadpopov.link-927577f9f71e103be58196f8031a9fcd9e178ce9.tar.xz
popov.link-927577f9f71e103be58196f8031a9fcd9e178ce9.zip
SASS templates have been removed
Diffstat (limited to '_sass/_layout.scss')
-rw-r--r--_sass/_layout.scss89
1 files changed, 0 insertions, 89 deletions
diff --git a/_sass/_layout.scss b/_sass/_layout.scss
deleted file mode 100644
index 58b03a2..0000000
--- a/_sass/_layout.scss
+++ /dev/null
@@ -1,89 +0,0 @@
-.container {
- margin: 0 auto;
- max-width: 800px;
- width: 80%;
-}
-
-main, footer, .nav-container {
- margin: 0 auto;
- max-width: 800px;
- width: 80%;
-}
-
-.nav {
- box-shadow: 0 2px 2px -2px $shadow-color;
- overflow: auto;
-
- &-container {
- margin: 1rem auto;
- position: relative;
- text-align: center;
- }
-
- &-title {
- @include transition(all .2s ease-out);
- color: $default-color;
- display: inline-block;
- margin: 0;
- padding-right: .2rem;
-
- &:hover,
- &:focus {
- opacity: .6;
- }
- }
-
- ul {
- list-style-type: none;
- margin: 1rem 0 0;
- padding: 0;
- text-align: center;
- }
-
- li {
- @include transition(all .2s ease-out);
- color: $default-color;
- display: inline-block;
- opacity: .6;
- padding: 0 2rem 0 0;
-
- &:last-child {
- padding-right: 0;
- }
-
- &:hover,
- &:focus {
- opacity: 1;
- }
- }
-
- a {
- color: $default-color;
- font-family: $sans-serif;
- }
-}
-
-@media (min-width: 600px) {
- .nav {
- &-container {
- text-align: left;
- }
-
- ul {
- bottom: 0;
- position: absolute;
- right: 0;
- }
- }
-}
-
-footer {
- font-family: $serif-secondary;
- padding: 2rem 0;
- text-align: center;
-
- span {
- color: $default-color;
- font-size: .8rem;
- }
-}