Skip to content
Snippets Groups Projects
CalendarWeek.css 511 B
Newer Older
  • Learn to ignore specific revisions
  • .calendar-container {
    
    준현 강's avatar
    준현 강 committed
      margin-top: 20px;
      width: 100%;
    }
    .button-container {
      display: flex;
      justify-content: space-between;
      width: 65%;
    
    준현 강's avatar
    준현 강 committed
    .wrap {
      width: 70%;
    }
    
    table {
      width: 100%;
      border-collapse: collapse;
      text-align: center;
    }
    
    th,
    td {
      border: 1px solid #ddd;
      padding: 10px;
    }
    
    th {
      background-color: #f4f4f4;
    }
    
    td {
      background-color: #f4f4f4;
      cursor: pointer;
    }
    td:hover {
      background-color: aqua;
    }
    
    .selected {
      background-color: #e0ffe0; /* 선택된 셀의 배경색 */
    }