summaryrefslogtreecommitdiff
path: root/assets/sass/_sidebar.scss
blob: 8c82f44fe513a22fc24c09393d5776473a2f9e1b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
@import "variables.scss";

// Sidebar Components

// Large Screen
@media (min-width: 1200px) {
  .post-container,
  .sidebar-container {
    padding-right: 5%;
  }
}
@media (min-width: 768px) {
  .post-container {
    padding-right: 5%;
  }
}

// Container of Sidebar, also Friends
.sidebar-container {
  color: $gray-light;
  font-size: 14px;
  h5 {
    color: $brand-gray;
    padding-bottom: 1em;
    a {
      color: $brand-gray !important;
      text-decoration: none;
    }
  }
  a {
    color: $gray-light !important;
    &:hover,
    &:active {
      color: $brand-primary !important;
    }
  }
  .tags {
    a {
      border-color: $gray-light;
      &:hover,
      &:active {
        border-color: $brand-primary;
      }
    }
  }
  .short-about {
    img {
      width: 80%;
      display: block;
      border-radius: 5px;
      margin-bottom: 20px;
    }
    p {
      margin-top: 0px;
      margin-bottom: 20px;
    }
    .list-inline > li {
      padding-left: 0px;
    }
  }
}