Statistics
| Branch: | Tag: | Revision:

root / cloudcms / static / cloudcms / less / servicesbar.less @ 098f0396

History | View | Annotate | Download (1.4 kB)

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

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

    
7
.servicesbar {
8
    font-family: arial, sans-serif;
9
    font-size: 11px;
10
    letter-spacing: 0px;
11
    .clearfix();
12
    color: #ccc;
13
    z-index: 1000;
14
    border-bottom: 1px solid #444;
15

    
16
    background-color: darken(@toolbarBg, 40%);
17

    
18
    a {
19
        color: @toolbarColor;    
20
        text-decoration: none;
21
        display: block;
22
        float: left;
23
        padding: 11px;
24
        &:hover {
25
            background-color: #444;
26
        }
27
        &.active {
28
            font-weight: bold;
29
            background-color: #333;
30
        }
31
    }
32

    
33
    .services {
34
        .clearfix();
35
    }    
36

    
37
    position: relative;
38

    
39
    .profile {
40
        margin-top: -34px;
41
        .clearfix();
42
        text-align: right;
43
        min-width: 200px;
44
        a {
45
                    float: none;
46
        }
47
        ul {
48
            display: none;    
49
            li {
50
                width: 100%;
51
                border-bottom: 1px solid #444;
52
                background-color: #333;
53
                a {
54
                    float: none;
55
                    display: block;
56
                }
57
            }
58
        }
59
        &:hover {
60
            background-color: #222;
61
            ul {
62
                display: block;    
63
            }
64
        }
65
        background-color: @black;
66
        .clearfix();
67
        position: absolute;
68
        right: 0;
69
        float: right;    
70
    }
71
}