summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/app/layouts/_phone-book-entry.scss
blob: f9e2345df39afbb6376f33ac102aae4ad5ff5364 (plain)
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
// Phone Book Entry Show
// ----------------------------------------
// Icons: http://www.iconfinder.com/search/?q=iconset%3Acc_mono_icon_set
//http://www.iconfinder.com/search/?q=iconset%3AHelveticons_Social
section.phone-book-entry {
  @include clearfix;
  a {
    @include link-colors(#49494D, $link-color);
  }
  .sidebar {
    @include size(220px, auto, none, 0 1px 0 0);
    border-right:1px solid #E3E3E8;
    float:left;
  }
  .content {
    float:right;
    width:716px;

  }

  .username {
    font-size: 46px;
    font-weight:normal;
    margin: 0 0 10px 0;
  }
  .personal {
    margin-top:5px;
    span {
      margin-right:10px;
      padding-left:22px;
    }
    .nickname {
      background:transparent image-url('icons/user-16x.png') left 1px no-repeat;
    }
    .birthday {
      background:transparent image-url('icons/star-16x.png') left -1px no-repeat;;
    }
  }

  .work {
    font-size: 18px;
  }

  .tags {
    background:transparent image-url('icons/tag-16x.png') left 0px no-repeat;
    margin-top:10px;
    padding-left:22px;
  }


  .activity {
    & > h2 {
      font-size: 27px;
      font-weight: normal;
    }
    textarea {
      border-color: #E3E3E8;
      height: 15px;
      padding: 12px;
      width: 689px;
    }
    .entry {
      @include clearfix;
      background-position: 12px 9px;
      border-bottom: 1px solid #E3E3E8;
      font-size: 16px;

      padding: 12px 0px 15px 55px;
      .motive {

        display: block;
        float: left;
        line-height: 25px;
        width: 529px;

      }
      .timestamp {
        color: #929298;
        float: right;
        font-size: 12px;
        line-height: 26px;
      }
    }
  }


  // Icons
  .home {
    background:transparent image-url('icons/house-32x.png') left 2px no-repeat;
  }
  .office {
    background:transparent image-url('icons/suitcase-32x.png') left 2px no-repeat;
  }
  .cellphone {
    background:transparent image-url('icons/phone-mobile-32x.png') left 2px no-repeat;
  }
  .phone {
    background:transparent image-url('icons/phone-up-32x.png') left 2px no-repeat;
  }
  .phone-down {
    background:transparent image-url('icons/phone-down-32x.png') left 2px no-repeat;
  }
  .fax {
    background:transparent image-url('icons/fax-32x.png') left 2px no-repeat;
  }
  .skype {
    background:transparent image-url('icons/skype-32x.png') left 2px no-repeat;
  }
  .twitter {
    background:transparent image-url('icons/twitter-32x.png') left 2px no-repeat;
  }
  .voice-message {
    background:transparent image-url('icons/mic-32x.png') left 2px no-repeat;
  }



  .comment {
    @include clearfix;
    border-bottom:1px solid #E3E3E8;
    padding: 11px;
    .display {
      float:left;
      overflow:hidden;
    }
    .info {
      margin-bottom:4px;
    }
    .info,.body {
      padding-left:47px;
    }
    .commenter {
      font-size: 17px;
      font-weight: bold;
    }
    .time {
      color:#929298;
    }
    .info {
      display:block;
    }
  }


  .display {
    @include border-radius(10px 0 10px 0);
  }
  .description {
    margin:10px 0;
  }
  .widget {
    border-top:1px solid #E3E3E8;
    padding:23px 0;
    width:200px; // Width of the image
    div {
      margin:10px 0;
      padding-left:51px;
      a {
        color:#4B4B4B;
        display:block;
        font-size:size(17px);
        font-weight:bold;
      }
      span {
        color:#E3E3E8;
        font-size:size(12px);
      }
    }

    &.adresses {
      strong {
        display:block;
      }
    }
  }
}