Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
207 espaco 1
/* Utils */
2
.clearfix:after {
3
    content:" ";
4
    display:block;
5
    clear:both;
6
}
7
 
8
.card {
9
    border-radius: $borderRadius;
10
    background: $contentBgColor;
11
    padding: 12px 16px;
12
    box-sizing: border-box;
13
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
14
    @include border-radius($borderRadius);
15
    margin-bottom: 2rem;
16
 
17
    &:last-child {
18
        margin-bottom: 0;
19
    }
20
 
21
    .card-header {
22
        @include flex();
23
        @include flex-align-center();
24
        @include flex-justify-between();
25
        padding-bottom: 6px;
26
 
27
        h6,h5 {
28
            margin-bottom: 0;
29
            color: $textSecondaryColor;
30
        }
31
 
32
        .header-buttons {
33
            @include flex();
34
            @include flex-align-center();
35
        }
36
    }
37
 
38
    &.no-gutter {
39
        margin-bottom: 0;
40
    }
41
 
42
}
43
 
44
.p-sr-only {
45
    border: 0;
46
    clip: rect(1px, 1px, 1px, 1px);
47
    clip-path: inset(50%);
48
    height: 1px;
49
    margin: -1px;
50
    overflow: hidden;
51
    padding: 0;
52
    position: absolute;
53
    width: 1px;
54
    word-wrap: normal !important;
55
}