aboutsummaryrefslogtreecommitdiffstats
path: root/alias-angular/app/css/app.less
blob: e66177a214d378c4a4978478d0f791ade608cbb0 (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
@import "less/mixins.less";

@border-gray: #D6D6D6;
@background-gray: #F5F5F5;

html, body{
    height: 100%;
}

.chat{
    color: #3D9940;
}

.away{
    color: #D9B232;
}

.dnd{
    color: #D9B232;
}

.xa{
    color: #D9B232;
}


#roster{
    min-height: 100%;
    float: left;
    width: 250px;
    background-color: @background-gray;
    border: 1px solid @border-gray;

    ul.contact-list{
        list-style: none;
        padding: 0;
        margin: 0;

        li{
            background-color: white;
            border-bottom: 1px solid @border-gray;
            padding: 0;
            margin: 0;
            padding: 1em 1em;
            color: #363636;
            .transition(0.3s);

            &:hover{
                background-color: @background-gray;
            }

            &:first-child{
                border-top: 1px solid @border-gray;
            }

            i{
                font-size:120%;
            }
        }
    }

}

#rostersearch{
    margin: 10px;
}

#titlebar{
    border-bottom:1px solid @border-gray;
    padding:10px;
    #gradient > .vertical(@background-gray,#EDEDED);
    margin-bottom:20px;
}

#main{
  float: left;
  margin-left: 20px;
}

ul.nav-tabs li a{
    outline: 0;
}

ul.chat-area{
    list-style: none;

    li{
        font-size:110%;
    }

    .name{
        display:block;
        float:left;
        text-align:right;
        width: 10em;
        margin-right:1em;

        &:before{
            content: '<';
        }

        &:after{
            content: '>';
        }
    }
}