1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- .widget {
- margin-bottom: 30px;
- padding-bottom: 35px;
-
- .widget-title {
- margin-bottom: 15px;
- padding-bottom: 10px;
- font-size: 16px;
- color: #333;
- font-weight: 500;
- border-bottom: 1px solid $border-color;
- }
-
- // latest Posts
- &.widget-latest-post {
- .media {
- .media-object {
- width: 100px;
- height: auto;
- }
-
- .media-heading {
- a {
- color: $black;
- font-size: 16px;
- }
- }
-
- p {
- font-size: 12px;
- color: #808080;
- }
- }
- }
-
- //end latest posts
-
- // Caterogry
- &.widget-category {
- ul {
- li {
- margin-bottom: 10px;
-
- a {
- color: #837f7e;
- @include transition (all, 0.3s, ease);
-
- &:before {
- padding-right: 10px;
- }
-
- &:hover {
- color: $primary-color;
- padding-left: 5px;
- }
- }
- }
- }
- }
-
- //end caterogry
-
- // Tag Cloud
- &.widget-tag {
- ul {
- li {
- margin-bottom: 10px;
- display: inline-block;
- margin-right: 5px;
-
- a {
- color: #837f7e;
- display: inline-block;
- padding: 8px 15px;
- border: 1px solid #dedede;
- border-radius: 30px;
- font-size: 14px;
- @include transition (all, 0.3s, ease);
-
- &:hover {
- color: $light;
- background: $primary-color;
- border: 1px solid $primary-color;
- }
- }
- }
- }
- }
- }
|