Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
/***
2
System feeds
3
***/
4
.feeds {
5
    margin: 0px;
6
    padding: 0px;
7
    list-style: none;
8
 
9
    li {
10
        background-color: #fafafa;
11
        color: darken(#96A5AA, 7%);
12
        margin-bottom: 7px;
13
 
14
        &:before,
15
        &:after {
16
            display: table;
17
            line-height: 0;
18
            content: "";
19
        }
20
 
21
        &:after {
22
            clear: both;
23
        }
24
 
25
        &:last-child {
26
            margin-bottom: 0px;
27
        }
28
 
29
        .col1 {
30
            float:left;
31
            width:100%;
32
            clear: both;
33
 
34
            > .cont {
35
                float:left;
36
                margin-right:75px;
37
                overflow:hidden;
38
 
39
                > .cont-col1 {
40
                    float:left;
41
                    margin-right:-100%;
42
 
43
                    > .label {
44
                        display: inline-block;
45
                        padding: 5px 4px 6px 5px;
46
                        vertical-align: middle;
47
                        text-align: center;
48
 
49
                        > i {
50
                            text-align: center;
51
                            font-size: 14px;
52
                        }
53
                    }
54
                }
55
 
56
                > .cont-col2 {
57
                    float:left;
58
                    width:100%;
59
 
60
                    > .desc {
61
                        margin-left:35px;
62
                        padding-top: 4px;
63
                        padding-bottom: 5px;
64
                        overflow:hidden;
65
                    }
66
                }
67
            }
68
        }
69
 
70
        .col2 {
71
            float:left;
72
            width:75px;
73
            margin-left:-75px;
74
 
75
            > .date {
76
              padding: 4px 9px 5px 4px;
77
              text-align: right;
78
              font-style: italic;
79
              color:#c1cbd0;
80
            }
81
        }
82
    }
83
}