about summary refs log tree commit diff
path: root/app/assets/stylesheets/profile.scss
blob: 5508b84247fc89a36778e20db5735886e7e6e631 (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
.card {
  padding-top: 20px;

  .name {
    font-size: 24px;
    line-height: 18px * 1.5;

    small {
      display: block;
      font-size: 14px;
      color: lighten($quaternary-color, 15%);
    }
  }

  .bio {

  }

  .counter {
    display: block;
    float: left;
    width: 100px;
    text-align: center;
    border: 1px solid #A593E0;
    color: #A593E0;
    border-radius: 5px;
    padding: 3px 0;
    margin-right: 3px;

    .num {
      display: block;
      font-size: 24px;
    }
  }
}

.activity-stream {
  clear: both;
  box-shadow: 4px 3px 0 rgba(0, 0, 0, 0.1);

  .entry {
    border-bottom: 1px solid darken($background-color, 10%);
    background: $background-color;
    border-left: 2px solid $primary-color;

    &.entry-reblog {
      border-left: 2px solid $tertiary-color;
    }

    &:last-child {
      border-bottom: 0;
    }
  }

  .header {
    margin-bottom: 10px;
    padding: 10px;
    padding-bottom: 0;
    padding-left: 8px;

    .name {
      text-decoration: none;
      color: lighten($quaternary-color, 15%);

      strong {
        color: $quaternary-color;
      }

      &:hover {
        strong {
          text-decoration: underline;
        }
      }
    }
  }

  .pre-header {
    border-bottom: 1px solid darken($background-color, 10%);
    color: $tertiary-color;
    padding: 5px 10px;
    padding-left: 8px;

    .name {
      color: $tertiary-color;
      font-weight: bold;
      text-decoration: none;

      &:hover {
        text-decoration: underline;
      }
    }
  }

  .content {
    font-size: 16px;
    padding: 0 10px;
    padding-left: 8px;
  }

  .time {
    text-decoration: none;
    color: lighten($quaternary-color, 15%);

    &:hover {
      text-decoration: underline;
    }
  }

  .counters {
    margin-top: 15px;
    color: lighten($quaternary-color, 15%);
    cursor: default;
    padding: 10px;
    padding-top: 0;
    padding-left: 8px;

    .counter {
      display: inline-block;
      margin-right: 10px;
      color: lighten($quaternary-color, 50%);
    }

    .conversation-link {
      color: $primary-color;
      text-decoration: underline;
      float: right;
    }
  }
}