source: RedSur/app/assets/stylesheets/sidebar.scss @ 40f563a

modelo_minuta
Last change on this file since 40f563a was 1b91e02, checked in by aosorio <aosorio@…>, 8 years ago

Version para desarrollo local

  • Property mode set to 100755
File size: 1.8 KB
Line 
1#home_user_badge {
2        min-height: 50px;
3        margin-bottom: 20px;
4        margin-left: 4px;
5
6        img {
7                float: left;
8        }
9
10        h4 {
11                margin-left: 60px;
12                padding-top: 15px;
13                overflow: hidden;
14                text-overflow: ellipsis;
15
16                a {
17                        color: inherit;
18                        font-weight: bold;
19                }
20        }
21}
22
23#stream_selection {
24        & > li {
25                margin-bottom: 10px;
26        }
27}
28
29#tags_list {
30        /* ---- override app/stylesheets/vendor/autoSuggest.css ---- */
31        .tag_input {
32                width: 100%;
33        }
34
35        .as-result {
36                margin-top: -1px;
37                margin-left: 1px;
38        }
39
40        .as-list {
41                em {
42                        background-color: #aabbcc;
43                        color: black;
44                        padding: 0px;
45                }
46
47                color: black;
48                position: static; /* override absolute */
49                margin: 0px;
50                border-radius: 0px 0px 3px 3px;
51                box-shadow: 0px 1px 1px #666;
52        }
53
54        .as-result-item.active {
55                color: black;
56                text-shadow: none;
57                background-color: $background-blue;
58                border-color: $background-blue;
59        }
60        /* ---- end override app/stylesheets/vendor/autoSuggest.css ---- */
61}
62
63.rightBar {
64
65  padding-top: 20px;
66
67  .section {
68    margin-bottom: 20px;
69
70    .title {
71      position: relative;
72      border-bottom: 1px solid $border-grey;
73      padding-bottom: 2px;
74
75      &.no_icon { padding-left: 8px; }
76
77      .right {
78        right: 4px;
79        top: 3px;
80        font-size: smaller;
81        font-weight: bold;
82        color: $text-dark-grey;
83      }
84
85      h5.title-header {
86        margin-left: 5px;
87      }
88
89      h5 {
90        font-size: 12px;
91        margin: 0;
92        color: $text-dark-grey;
93        font-weight: bold;
94      }
95    }
96
97    .content {
98      padding: 8px;
99      color: $text-grey;
100      font-size: 11px;
101
102      p, ul {
103        margin: 5px 0px;
104      }
105
106      ul {
107        padding-left: 0;
108
109        li {
110          list-style: none;
111        }
112      }
113
114      & > #invite_code {
115        width: 100%;
116        box-sizing: border-box;
117        font-size: 11px;
118        height: 30px;
119      }
120    }
121  }
122}
Note: See TracBrowser for help on using the repository browser.