WeatherPage.scss 2.89 KB
#header {
  display: flex;
  position: fixed;
  justify-content: center;
  align-items: center;
  height: 15%;
  width: 100%;
  border-top: 2px solid;
  border-bottom: 2px solid;

  .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;
    flex-wrap: wrap;
    flex-direction: column;
    border-top: 2px solid;
    border-bottom: 2px solid;
    .address {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 150px;
        font-size: 30px;
    }
    .today_weather {
        display: flex;
        justify-content: center;
        align-items: center;
        border: 2px solid;
        width: 50%;
        margin-top: 30px;
        margin-bottom: 10px;
        .today_now_weather_info {
          display: flex;
          justify-content: center;
          align-items: center;
          flex-direction: column;
          margin-right: 30px;
        }
        .days {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            flex-direction: column;
            margin-top: 25px;
            margin-bottom: 25px;
            margin-left: 15px;
            margin-right: 200px;
        }
        .today_whole_weather{
          display: flex;
          flex-direction: row;
        }
    }
    
    .tommorrow_weather {
      display: flex;
      justify-content: center;
      align-items: center;
      border: 2px solid;
      width: 50%;
      margin-top: 20px;
      margin-bottom: 20px;
      .days {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        flex-direction: column;
        margin-top: 25px;
        margin-bottom: 25px;
        margin-left: 15px;
        margin-right: 200px;
      }
      .tommorrow_weather_info {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin-right: 30px;
        .tommorrow_whole_weather{
          display: flex;
          flex-direction: row;
        }
      }
    }
    .weather-btn-area {
      display: flex;
      justify-content: center;
      margin-top: 20px;
      margin-bottom: 10px;
  
      button {
        width: 150px;
        height: 60px;
        font-size: 15px;
        font-weight: bold;
        background-color:rgb(255, 253, 238);
        cursor: pointer;
      }
    }
  }