MainPage.scss 1.06 KB
#Main{
  display: flex;
  justify-content: center;
  align-items: center;
  .Main-header{
    background-color: rgb(77, 62, 161);
    position: fixed;  
    top: 0; 
    left: 0;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 120px;
    .wrapper{
      display: flex;
      flex-direction: row;
      margin-bottom: 20px;
      width:100%;
    }
    .title{
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      .h1{
        font-family:Arial, Helvetica, sans-serif;
        font-size: 60px;
        font-weight: bold;
      }
    }
    .None-title{
      display: flex;
      justify-content:right;
      align-items: center;
      width: 10%;
      .ui button{
        height: 40px;
      }
    }
    
  }
  .Main-body{
    padding-top: 120px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    .Board{
      width: 100%;
      
    }
  }  
}