blob: 8f20ce5e3bac572a0c8c97eed0b774b6ce9de653 (
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
|
.main {
height: 100%;
position: relative;
z-index: 0;
overflow: auto;
}
.tab-yes {
height: 100%;
width: 3%;
float: left;
position: relative;
z-index: 1;
background: var(--yes);
}
.tab-home {
height: 100%;
width: 3%;
float: left;
position: relative;
z-index: 1;
background: var(--home);
}
.tab-home:hover {
width: 4%;
transition: 0.2s;
}
.tab-yes:hover ~ .tab-home {
width: 5%;
transition: 0.2s;
}
.tab-yes:hover {
width: 4%;
transition: 0.2s;
}
/* Archive. */
.feed-archive {
height: 100%;
display: flex;
position: relative;
flex-wrap: wrap;
overflow: auto;
justify-content: space-between;
}
.archive {
max-height: 20%;
max-width: 25%;
background: white;
border-radius: 14px;
padding: 1rem;
margin: 0.5rem;
overflow: hidden;
position: relative;
}
.archive:hover {
background: linear-gradient(to left, var(--no) 50%, var(--yes) 50%);
cursor: pointer;
transition: 0.8s;
color: white;
overflow: auto;
}
|