/* Google Fonts - Kanit */ @import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600&display=swap'); * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Kanit', sans-serif; } body { min-height: 100%; width: 100%; background: #e0e4e7; } nav { position: fixed; top: 0; left: 0; height: 70px; width: 100%; display: flex; align-items: center; background: #ffffff; box-shadow: 0 0 1px rgba(0, 0, 0, 0.1); } nav .logo { display: flex; align-items: center; margin: 0 24px; } nav .user { display: flex; width: 1500%; justify-content: end; margin-right: 10px; } nav .bottom-cotent { display: flex; width: 100%; justify-content: end; margin-right: 30px; } .logo .nav-link { display: flex; align-items: center; background-color: #ffffff; text-decoration: none; } .user .nav-link { display: flex; align-items: center; background-color: #ffffff; text-decoration: none; font-size: 16px; color: #000; font-weight: 400; } .bottom-cotent .icon { color: #333; font-size: 24px; margin-right: 14px; cursor: pointer; } .bottom-cotent .menu-icon { margin: 14px; font-size: 20px; color: #000; } .logo .menu-icon { color: #333; font-size: 24px; margin-right: 14px; cursor: pointer; } .logo .logo-name { color: #333; font-size: 22px; font-weight: 500; } nav .sidebar { position: fixed; top: 0; left: -100%; height: 100%; width: 320px; padding: 10px 0; background-color: #ffffff; box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); transition: all 0.5s ease; } nav.open .sidebar { left: 0; } .sidebar .sidebar-content { display: flex; height: 100%; flex-direction: column; justify-content: space-between; padding: 10px 16px; } .sidebar-content .list { list-style: none; } .list .nav-link { display: flex; align-items: center; margin: 5px 0; padding: 5px 12px; border-radius: 8px; background-color: #ffffff; text-decoration: none; } .lists .nav-link:hover { background-color: #36618D; /* */ } .nav-link .icon { margin: 14px; font-size: 20px; color: #000; } .nav-link .link { font-size: 16px; color: #000; font-weight: 400; } .overlay { position: fixed; top: 0; left: -100%; height: 1000vh; width: 200%; opacity: 0; pointer-events: none; transition: all 0.5s ease; background: rgba(0, 0, 0, 0.3); } nav.open~.overlay { opacity: 1; left: 320px; pointer-events: auto; }