MainPage.scss 2.95 KB
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: rgb(245, 235, 223);
  }
  #header {
    display: flex;
    position: fixed;
    justify-content: center;
    align-items: center;
    height: 15%;
    width: 100%;
    border-top: 2px solid;
    border-bottom: 2px solid;
  
    .header_clock {
      justify-content: left;
      align-items: left;
      width: 10%;
      height: 10%;
      h1{
        color:rgb(0, 0, 0);
        font-size: 15px;
      }
    }
  
    .header_title {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-left: 300px;
      margin-right: 300px;
      h1 {
        font-size: 50px;
        font-family: 'Times New Roman', Times, serif;
        color: rgb(0, 0, 0);
      }
    }
    .header_choice_box {
      display: flex;
      justify-content: right;
      align-items: right;
      margin-right: 10x;
    }
      button {
        width: 70px;
        height: 25px;
        font-size: 15px;
        font-weight: bold;
        cursor: pointer;
      }
    }
  
  #body {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 2px solid;
    border-bottom: 2px solid;
  
    .info-box {
      border: 2px solid;
      width: 55%;
      height: 100%;
      margin-top: 150px;
      margin-bottom: 30px;
    }
    hr {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 20px;
      margin-left: 100px;
      margin-right: 100px;
    }
    .info{
      display:flex;
      font-size: 30px;
      border: 2px solid rgb(225, 208, 134);
      background-color: rgb(242, 235, 130);
      color:rgb(255, 255, 255);
      justify-content: center;
      align-items: center;
      margin-top: 50px;
      margin-bottom: 50px;
      margin-left: 30%;
      margin-right: 30%;
    }
    .main-input-area {
      display: flex;
      justify-content: left;
      align-items: left;
      margin-top: 20px;
      margin-bottom: 15px;
      li{
        display:flex;
        font-size: 15px;
        color: gray;
        margin-left: 15%;
        margin-right: 10%;
      }
      p{
        display:flex;
        font-size: 15px;
        border: 2px dotted gray;
        margin-bottom: 5px;
        margin-left: 5%;
       }
      input {
        padding: 10px 2rem;
        background-color: rgb(255, 255, 255);
        margin-left: 50px;
      }

      select {
        padding: 10px 1.5rem;
        margin-right: 5px;
        background-color: rgb(255, 255, 255);
      }
    }
    .main-check-variable {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 5px;
    }
    .main-btn-area {
      display: flex;
      justify-content: center;
      margin-top: 60px;
      margin-bottom: 10px;
  
      button {
        width: 150px;
        height: 60px;
        font-size: 15px;
        font-weight: bold;
        background-color:rgb(255, 253, 238);
        cursor: pointer;
      }
    }
  }