summaryrefslogtreecommitdiff
path: root/app/static/styles/home.css
blob: 553299c919baa8465c8a7acbd0d47b9a71691469 (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
.main {
    height: 100%;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.feed-post {
    height: 100%;
    display: flex;
    position: relative;
    flex-wrap: wrap;
    overflow: auto;
    justify-content: space-between;
}

.tab-yes {
    height: 100%;
    width: 3%;
    float: left;
    position: relative;
    background: var(--yes);
}
.tab-no {
    height: 100%;
    width: 3%;
    float: right;
    position: relative;
    background: var(--no);
}

.tab-yes:hover {
    width: 4%;
    transition: 0.2s;
}

.tab-no:hover {
    width: 4%;
    transition: 0.2s;
}

.post {
    max-height: 20%;
    max-width: 30%;
    background: white;
    border-radius: 14px;
    padding: 1rem;
    margin: 1rem;
    overflow: hidden;
}

.post:hover {
    background: linear-gradient(to left, var(--no) 50%, var(--yes) 50%);
    cursor: pointer;
    transition: 0.8s;
    color: white;
    overflow: auto;
}
Copyright 2019--2024 Marius PETER