about summary refs log tree commit diff
path: root/app/assets/stylesheets/profile.scss
blob: 2e5e0a6e393f16bac5ea5f1a56ee7c7689ff6252 (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
@import url(https://fonts.googleapis.com/css?family=Noto+Sans:400,700,400italic);

@import "font-awesome-sprockets";
@import "font-awesome";

body {
  font-family: 'Noto Sans', sans-serif;
  background: #E0E3DA;
  font-size: 13px;
  line-height: 18px;
}

.container {
  width: 800px;
  margin: 0 auto;
}

.card {
  padding-top: 20px;

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

    small {
      display: block;
      font-size: 14px;
      color: #566270;
    }
  }

  .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;

  .entry {
    padding: 10px;
    border-bottom: 1px solid #E0E3DA;
    background: #FFFFF3;

    &:first-child {
      border-radius: 5px 5px 0 0;
    }

    &:last-child {
      border-bottom: 0;
      border-radius: 0 0 5px 5px;
    }
  }

  .header {
    margin-bottom: 10px;
  }

  .name {
    text-decoration: none;
    color: #566270;

    strong {
      color: #000;
    }

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

  .content {
    font-size: 16px;
  }

  .time {
    text-decoration: none;
    color: #566270;

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

  .counters {
    margin-top: 15px;
    color: #566270;
    cursor: default;

    .counter {
      display: inline-block;
      margin-right: 10px;
    }
  }
}