:root { --first-color: #093760; } .flex-center { display: flex; align-items: center; justify-content: center; } .header { background-color: var(--first-color); height: 6%; } .header span { color: #ffffff; font-weight: 400; } .main { height: 94%; background-color: #f3f3f3; } .main ul { padding-top: 12px; opacity: 1; } .main .nav { height: 60px; background-color: #ffffff; padding: 10px 15px; justify-content: flex-start; cursor: pointer; transition: .3s; position: relative; } .main .nav:hover { background-color: #f3f3f3; } .nav-icon { height: 45px; width: 45px; } .nav-icon-img { height: 100%; } .nav .nav-content { color: #585858; padding: 5px; } .nav .nav-content-sub { font-size: 1rem; } .nav .nav-content-desc { font-size: .6rem; margin-top: .15rem; white-space: nowrap; text-overflow:ellipsis; overflow:hidden; width: 150px; } .nav-icon-next { position: absolute; right: 10px; } .nav-icon-img-next { height: 40%; transform: translateY(6%); } @media screen and (min-width: 320px) { .nav .nav-content-desc { width: 250px; } }