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: bf2338591cd7e0bb375c3bd7068e47a3e9b75ecb (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

.profile_photo {
  img {
    height: auto;
    width: 200px;
  }
}

#profile {
  h3 { margin-bottom: 0; }
  ul {
    margin: 0;
    padding: 0;
  }

  .avatar.large { margin-bottom: 0; }

  ul#profile_information {
    margin: 1em 0;
    > li {
        margin-bottom: 2em;
        margin-right: 2em;
      h4 { font-weight: bold; }
      }
  }

  .image_list {
    .section {
      margin-bottom: 4px;
    }
    img {
      height: 45px;
      width: 45px;
    }
  }

  .blocked {
    background-color: rgb(244, 42, 42);
    .profile_button {
      width: 150px;
    }
  }
  .mutual {
    background-color: rgb(142, 222, 61);
    .profile_button {
      width: 50px;
    }
  }
  .sharing {
    background-color: rgb(142, 222, 61);
    .profile_button {
      width: 150px;
    }
  }
  .receiving {
    background-color: rgb(211, 211, 211);
    .profile_button {
      width: 75px;
    }
  }
  .not_sharing {
    background-color: rgb(211, 211, 211);
    .profile_button {
      width: 150px;
    }
  }

  #profile_buttons {
    width: 190px;
    padding-right: 10px;
    height: 28px;
    text-align: center;
    @include border-bottom-radius(8px);

    .sharing_message_container {
      float: left;
      padding: 5px 1px;
      @include opacity(0.3);
      background-color: white;
      @include border-bottom-left-radius(8px);
    }

    .profile_button {
      display: inline-block;
      text-align: center;
    }

    a { @include opacity(0.5); }
    a:hover { @include opacity(1); }

    .icons-check_yes_ok {
      display: inline-block;
      height: 18px;
      width: 18px;
    }
    .icons-circle {
      display: inline-block;
      height: 18px;
      width: 18px;
    }
    .icons-ignoreuser {
      display: inline-block;
      height: 14px;
      width: 14px;
      margin: 7px 0;
    }
    .icons-mention {
      display: inline-block;
      height: 18px;
      width: 19px;
      margin: 5px 0;
    }
    .icons-message {
      display: inline-block;
      height: 18px;
      width: 25px;
      margin: 5px 0;
    }
    .white_bar {
      display: inline-block;
      height: 18px;
      width: 1px;
      background-color: white;
      margin: 5px 0;
    }
  }
}