/* Main page components. */ .main { height: 100%; position: relative; z-index: 0; overflow: hidden; } /* Feeds. */ .feed-message { height: 100%; width: 30%; position: relative; float: left; overflow: auto; } .feed-post { height: 100%; width: 30%; position: relative; float: left; overflow: auto; } .feed-ads { height: 100%; width: 20%; position: relative; float: left; overflow: auto; } /* Tabs. */ .tab-no { height: 100%; width: 3%; float: right; position: relative; background: var(--no); } .tab-home { height: 100%; width: 3%; float: right; position: relative; background: var(--home); } .tab-home:hover { width: 4%; transition: 0.2s; } .tab-no:hover ~ .tab-home { width: 5%; transition: 0.2s; } .tab-no:hover { width: 4%; transition: 0.2s; } /* Messages. */ .message { background: white; border-radius: 14px; padding: 1rem; margin: 0.5rem; } .message:hover { background: linear-gradient(to left, var(--no) 50%, var(--yes) 50%); cursor: pointer; transition: 0.8s; color: white; } /* News. */ .news { background: white; border-radius: 14px; padding: 1rem; margin: 0.5rem; } .news:hover { background: linear-gradient(to left, var(--no) 50%, var(--yes) 50%); cursor: pointer; transition: 0.8s; color: white; } /* Ads. */ .ad { background: white; border-radius: 14px; padding: 1rem; margin: 0.5rem; } .ad:hover { background: linear-gradient(to left, var(--no) 50%, var(--yes) 50%); cursor: pointer; transition: 0.8s; color: white; }