Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / static / im / cloudbar / cloudbar.less @ 27993be5

History | View | Annotate | Download (1.7 kB)

1
@import "less/bootstrap.less";
2

    
3
@toolbarBg: #222;
4
@toolbarColor: darken(@white, 10%);
5
@toolbarHeight: 30px;
6

    
7
.servicesbar {
8

    
9
    // mini reset
10
    ol, ul { list-style:none; margin:0; padding:0;}
11
    li {margin:0; padding:0;}
12
    font-family: arial, sans-serif;
13
    font-size: 13px !important;
14
    line-height: 13px;
15
    letter-spacing: 0px;
16
    .clearfix();
17
    color: #ccc;
18
    z-index: 1000;
19
    border-bottom: 1px solid #444;
20

    
21
    background-color: darken(@toolbarBg, 40%);
22

    
23
    a {
24
        border: none !important;
25
        font-size: inherit !important;
26
        color: @toolbarColor;    
27
        text-decoration: none;
28
        display: block;
29
        float: left;
30
        padding: 11px;
31
        height: 13px;
32
        &:hover {
33
            background-color: #444;
34
        }
35
        &.active {
36
            font-weight: bold;
37
            background-color: #333;
38
        }
39
    }
40

    
41
    .services {
42
        .clearfix();
43
    }    
44

    
45
    position: relative;
46

    
47
    .profile {
48
        margin-top: -35px;
49
        .clearfix();
50
        text-align: right;
51
        min-width: 200px;
52
        a {
53
                    float: none;
54
        }
55
        ul {
56
            display: none;    
57
            li {
58
                width: 100%;
59
                border-bottom: 1px solid #444;
60
                background-color: #333;
61
                a {
62
                    float: none;
63
                    display: block;
64
                }
65
            }
66
        }
67
        &:hover {
68
            background-color: #222;
69
            ul {
70
                display: block;    
71
            }
72
        }
73
        background-color: @black;
74
        .clearfix();
75
        position: absolute;
76
        right: 0;
77
        float: right;    
78
    }
79
}