Skip to content
Snippets Groups Projects
Select Git revision
  • 4847d788ebc694ba46f2cbb7f1334ba91ba646cc
  • main default protected
  • gaeon
3 results

mainAside.module.css

Blame
  • mainAside.module.css 1.48 KiB
    .aside_container{
    
        display: flex;
        flex: 1;
        flex-direction: column;
        border-left: 2px solid #D9D9D9;
        width: 400px;
        height: 600px;
       
        justify-content: flex-end;
    }
    
    .header{
        margin-left: 10px;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    
    .sign{
        float: left;
        margin-left: 5%;
        height: 25px;
        width: 80px;
        font-weight: bold;
        color: #ffffff;
        background-color: #8393BE;
        text-align: center;
    }
    
    .nextSchedule, .notice{
        display: flex;
        flex: 1;
        height: 50vh;
        overflow-y: auto;
        padding: 10px;
        margin: 10px;
        width:100%;
    }
    
    .nextSchedule{
        border-bottom: 2px solid #D9D9D9;
    }
    
    .nextContent{
        display: grid;
        grid-template-columns: 1fr; /* 한 개의 열 */
        height: 50px;
        border: 2px solid #d6d6d6;
        border-radius: 3px;
        width: 350px;
    }
    
    .noticeContent{
        display: grid;
        grid-template-columns: 1fr; /* 한 개의 열 */
    
        width: 300px;
        height: 100px;
        border: 2px solid #d6d6d6;
        border-radius: 3px;
    }
    
    .title{
        font-weight: bold;
        float: left;
    }
    
    .channel{
    
    }