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

profile.css.scss « stylesheets « assets « app - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aabcb0e2eb13a3202ca6e12c5575bf7c36489c1d (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
#profile_container {
  .profile_header {
    border-bottom: 1px solid $border-grey;
    margin-bottom: 20px;

    #edit_profile, #unblock_user_button, .aspect_dropdown {
      margin-top: 5px;
      margin-right: 10px;
    }

    #author_info {
      h2 {
        line-height: 35px;
        margin-top: 10px;
        margin-bottom: 0px;
      }
      #name {
        font-weight: 700;
      }
      #diaspora_handle {
        color: $text-grey;
        font-size: 20px;
      }
      #sharing_message {
        cursor: default;
        font-size: 20px;
        &.circle {
          color: $light-grey;
          &:before { content: '\26aa'; }
        }
        &.entypo.check { color: darken($green,20%); }
      }
      .description {
        margin-bottom: 20px;
        .tag {
          background-color: transparent;
          font-size: 14px;
        }
        .tag:not(.entypo) {
          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;
          .entypo.profile-header-icon, .profile-header-icon {
            font-size: 24.5px;
            line-height: 30px;
            color: lighten($black,75%);
            &:hover { color: $black; }
          }
          #mention_button { font-weight: 700; }
        }
      }

      ul#profile_nav {
        list-style: none;
        margin: 0;
        > li {
          display: inline-block;
          &.active {
            border-bottom: 3px solid $creation-blue;
            a {
              color: $black;
              .entypo { color: $black; }
            }
          }
          a {
            padding: 10px 15px;
            font-size: 16px;
            line-height: 46px;
            color: lighten($black,50%);
            .entypo {
              color: lighten($black,50%);
              margin-right: 2px;
            }
            &:hover {
              color: $black;
              .entypo { color: $black; }
              text-decoration: none;
            }
          }
        }
      }
    }
  }

  #profile {
    border-right: 1px solid $border-grey;
    padding: 10px 20px;
    #profile_photo {
      margin-top: 10px;
      padding-bottom: 10px;
      border-bottom: 1px dashed $border-grey;
      text-align: center;
    }

    ul#profile_information {
      margin: 0;
      list-style: none;
      > li {
          margin-bottom: 2em;
        h4 { font-weight: bold; }
        }
    }

  }
}