summaryrefslogtreecommitdiffstats
path: root/web/sass-files/sass/layout/_content.scss
blob: 71bef0d7fdde0afbbf228e548142ea826fd7726f (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
@charset 'UTF-8';

.inner-wrap {
    &.move--left {
        .search-bar__container {
            display: none;
        }
    }

    &.move--right {
        .search-bar__container {
            display: none;
        }
    }
}

.app__content {
    height: 100%;
    padding-top: 50px;
    margin-left: 220px;
    position: relative;
    background: #fff;
    @include display-flex;
    @include flex-direction(column);

    .channel__wrap & {
        padding-top: 0;
    }
}
#post-create {
    @include flex(0 0 auto);
    background: #fff;
    width: 100%;
    z-index: 3;
}

#archive-link-home {
    @include flex(0 0 auto);
    cursor: pointer;
    padding: 10px 20px;
    font-size: 13px;

    .fa {
        font-size: 11px;
        @include opacity(.7);
    }

    a {
        color: inherit;
    }
}

.post-list {
    .new-messages-hr {
        margin-top: 5px;
        margin-bottom: 0px;
        border: 0;
        border-top: 1px solid #f80;
    }

    .new-messages-text {
        margin-top: 2px;
        margin-bottom: 5px;
        color: #f80;
        text-align: center;
    }
}

.new-messages-hr {
    margin-top: 5px;
    margin-bottom: 0px;
    border: 0;
    border-top: 1px solid #f80;
}

.new-messages-text {
    margin-top: 2px;
    margin-bottom: 5px;
    color: #f80;
    text-align: center;
}

.delete-message-text {
    margin-top: 10px;
}