diff options
Diffstat (limited to 'sass/partials/_sidebar.scss')
-rw-r--r-- | sass/partials/_sidebar.scss | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/sass/partials/_sidebar.scss b/sass/partials/_sidebar.scss new file mode 100644 index 0000000..862840c --- /dev/null +++ b/sass/partials/_sidebar.scss @@ -0,0 +1,51 @@ +#sidebar{ + width: 420px; + background: $black; + margin: 70px 0 30px; + word-wrap: break-word; + ul{ + list-style: none; + } + .widget{ + margin: 20px; + color: #999; + font-size: 13px; + line-height: 1.5; + h3{ + color: $main; + font-weight: normal; + font-size: 15px; + margin-bottom: 5px; + a{ + color: $main; + &:hover{ + color: $main; + } + } + } + a{ + color: #ccc; + &:hover{ + color: #fff; + text-decoration: underline; + } + } + ul{ + list-style: disc; + margin-left: 15px; + li{ + ul{ + list-style: circle; + } + } + } + &.thin{ + width: 180px; + display: inline-block; + vertical-align: top; + &:nth-of-type(2n){ + margin-right: 0; + } + } + } +}
\ No newline at end of file |