Skip to content
Snippets Groups Projects
ResultEnd.css 583 B
Newer Older
  • Learn to ignore specific revisions
  • 준현 강's avatar
    준현 강 committed
    .title-box {
      width: 30%;
      margin: 0 auto;
      text-align: center;
    }
    
    .form-container {
      width: 100%;
      margin-bottom: 20px;
      padding: 0;
    }
    
      border: 1px solid;
    
      padding: 10px;
    }
    
    준현 강's avatar
    준현 강 committed
    
    
    .possible {
      position: fixed;
    
    준현 강's avatar
    준현 강 committed
      right: 0; /* 화면의 오른쪽 끝에 고정 */
      top: 50%; /* 화면의 상단으로부터 50%의 위치에 고정 */
      transform: translateY(
        -50%
      ); /* 상단 50% 위치에서 자기 자신의 높이의 절반을 위로 이동 */
    
    준현 강's avatar
    준현 강 committed
      width: 20%;
    
    준현 강's avatar
    준현 강 committed
      border: 1px solid black;
    
      padding: 20px;
    }
    
    준현 강's avatar
    준현 강 committed
    
    
    .row {
      display: flex;
      justify-content: center;