RecommandPage.scss 3.14 KB
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: rgb(245, 235, 223);
  }
  img {
    width: 300px;
    height: 300px;
    object-fit: cover;
  }

  #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;
      }
    }
  
  #recommand_body {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 2px solid;
    border-bottom: 2px solid;
  
    .fashion_recommand {
      border: 2px solid;
      width: 50%;
      height: 200%;
      margin-top: 150px;
      margin-bottom: 30px;
    
    .rainOrnot {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 20px;
      margin-left: 100px;
      margin-right: 100px;
      font-size :30px;
      font-weight: bold;
    }
    .clothes{
        display:flex;
        justify-content: space-between;
        align-items: space-between;

        .Top{
            display:flex;
            flex-wrap: wrap;
            flex-direction: column;
            font-size: 30px;
            border: 2px solid;
            color:rgb(0, 0, 0);
            justify-content: center;
            align-items: center;
            margin-top: 50px;
            margin-bottom: 50px;
            margin-left: 5%;
            margin-right: 1%;
        }

        .Bottom{
            display:flex;
            flex-wrap: wrap;
            flex-direction: column;
            font-size: 30px;
            border: 2px solid;
            color:rgb(0, 0, 0);
            justify-content: center;
            align-items: center;
            margin-top: 50px;
            margin-bottom: 50px;
            margin-left: 1%;
            margin-right: 5%;
        }
        
        .Head{
            display:flex;
            flex-wrap: wrap;
            flex-direction: column;
            font-size: 30px;
            border: 2px solid;
            color:rgb(0, 0, 0);
            justify-content: center;
            align-items: center;
            margin-top: 50px;
            margin-bottom: 50px;
            margin-left: 1%;
            margin-right: 1%;
        }
        .Shoes{
            display:flex;
            flex-wrap: wrap;
            flex-direction: column;
            font-size: 30px;
            border: 2px solid;
            color:rgb(0, 0, 0);
            justify-content: center;
            align-items: center;
            margin-top: 50px;
            margin-bottom: 50px;
            margin-left: 1%;
            margin-right: 1%;
        }
    }
  }
}