Welcome to mirror list, hosted at ThFree Co, Russian Federation.

profile.scss « stylesheets « assets « app - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8e0c7e87d2cc42d844c67672d452169606080d41 (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
#profile_container {
  .profile_header {
    margin-bottom: 15px;
    background-color: $framed-background;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 20px;
    margin-top: -20px;
    box-shadow: $card-shadow;

    #edit_profile, #unblock_user_button, .aspect-dropdown {
      margin-top: 15px;
    }

    #author_info {
      h2 {
        line-height: 35px;
        margin-top: 10px;
        margin-bottom: 0px;
      }
      #name {
        font-weight: 700;
      }
      #diaspora_handle {
        color: $text-color-pale;
        font-size: 20px;
      }
      #sharing_message {
        cursor: default;
        font-size: 20px;
        &.circle {
          color: $text-grey;
          &:before { content: '\26aa'; }
        }
        &.entypo-check { color: darken($brand-success,20%); }
      }
      .description {
        margin-bottom: 20px;
        .tag {
          background-color: transparent;
          font-size: $font-size-base;
        }
        .tag {
          font-weight: 700;
        }
        .entypo-tag {
          margin: 0 5px;
          font-weight: normal;
          &:hover {text-decoration: none;}
        }
      }
    }

    #profile-horizontal-bar {
      border-top: 1px dashed $border-grey;
      min-height: 50px;
      margin-top: 10px;
      #profile_buttons {
        padding: 10px 0;
        > .profile_button {
          text-decoration: none;
          cursor: pointer;
          margin-right: 25px;
          .profile-header-icon {
            font-size: 24.5px;
            line-height: 30px;
            color: $text-color-pale;
            &:hover { color: $text-color; }
          }
          #mention_button { font-weight: 700; }
        }
      }

      ul#profile_nav {
        list-style: none;
        margin: 0;
        padding: 0;
        > li {
          display: inline-block;
          &.active {
            border-bottom: 3px solid $brand-primary;
            a {
              color: $text-color-active;

              [class^="entypo-"],
              [class*="entypo-"] {
                color: $text-color-active;
              }
            }
          }
          a {
            padding: 10px 15px;
            font-size: 16px;
            line-height: 46px;
            color: lighten($black,50%);
            [class^="entypo-"], [class*="entypo-"] {
              color: lighten($black,50%);
              margin-right: 2px;
            }
            &:hover {
              color: $text-color-active;
              text-decoration: none;

              [class^="entypo-"],
              [class*="entypo-"] {
                color: $text-color-active;
              }
            }
          }
        }
      }
    }
  }

  #profile {
    padding: 20px;
    margin-bottom: 35px;

    #profile_photo {
      margin-top: 10px;
      padding-bottom: 10px;
      text-align: center;
    }

    ul#profile_information {
      border-top: 1px dashed $border-grey;
      margin: 0;
      padding: 0;
      list-style: none;
      overflow-x: hidden;
      word-wrap: break-word;
      > li {
          margin-bottom: 2em;
        h4 { font-weight: bold; }
        }
    }

  }

  .stream-container > .pagination { text-align: center; }

  #people-stream {
    background-color: $white;
    box-shadow: $card-shadow;
  }
}

#birth-date{
  text-align: center;
  select{
    width: 32%;
    display: inline;
    &:first-of-type{ float: left; }
    &:last-of-type{ float: right; }
  }
}

#update_profile_form {
  .profile-visibility-hint { margin-left: 10px; }
  .visibility-hint-icon { cursor: default; }
}