Gitlab@Informatics

Skip to content
Snippets Groups Projects
Select Git revision
1 result Searching

sidebar.css

Blame
  • sidebar.css 2.61 KiB
    /* 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;