.main { height: 100%; position: absolute; z-index: 0; left: 3%; right: 3%; overflow: hidden; } .feed-post { height: 100%; padding: 1px; display: flex; position: relative; flex-wrap: wrap; overflow: auto; justify-content: space-around; } .tab-yes { height: 100%; width: 3%; float: left; position: fixed; left: 0; background: var(--yes); } .tab-no { height: 100%; width: 3%; float: right; position: fixed; right: 0; background: var(--no); } .tab-yes:hover { width: 4%; transition: 0.2s; } .tab-no:hover { width: 4%; transition: 0.2s; } .tab-yes:hover ~ .main { left: 5%; transition: 0.2s; } .tab-no:hover ~ .main { right: 5%; 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; }