Skip to content

Commit

Permalink
add-css
Browse files Browse the repository at this point in the history
  • Loading branch information
pryge committed Dec 17, 2024
1 parent 5068560 commit 360ae36
Showing 1 changed file with 66 additions and 66 deletions.
132 changes: 66 additions & 66 deletions src/styles/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -92,144 +92,144 @@ body {
margin-left: 606px;
}

.calendar .calendar--month-length-28 .calendar__day:nth-child(n+29) {
.calendar .calendar--month-length-28 .calendar__day:nth-child(n + 29) {
display: none;
}

.calendar .calendar--month-length-29 .calendar__day:nth-child(n+30) {
.calendar .calendar--month-length-29 .calendar__day:nth-child(n + 30) {
display: none;
}

.calendar .calendar--month-length-30 .calendar__day:nth-child(n+31) {
.calendar .calendar--month-length-30 .calendar__day:nth-child(n + 31) {
display: none;
}

.calendar .calendar--month-length-31 .calendar__day:nth-child(n+32) {
.calendar .calendar--month-length-31 .calendar__day:nth-child(n + 32) {
display: none;
}

.calendar__day:nth-child(n+1)::before {
content: "1";
.calendar__day:nth-child(n + 1)::before {
content: '1';
}

.calendar__day:nth-child(n+2)::before {
content: "2";
.calendar__day:nth-child(n + 2)::before {
content: '2';
}

.calendar__day:nth-child(n+3)::before {
content: "3";
.calendar__day:nth-child(n + 3)::before {
content: '3';
}

.calendar__day:nth-child(n+4)::before {
content: "4";
.calendar__day:nth-child(n + 4)::before {
content: '4';
}

.calendar__day:nth-child(n+5)::before {
content: "5";
.calendar__day:nth-child(n + 5)::before {
content: '5';
}

.calendar__day:nth-child(n+6)::before {
content: "6";
.calendar__day:nth-child(n + 6)::before {
content: '6';
}

.calendar__day:nth-child(n+7)::before {
content: "7";
.calendar__day:nth-child(n + 7)::before {
content: '7';
}

.calendar__day:nth-child(n+8)::before {
content: "8";
.calendar__day:nth-child(n + 8)::before {
content: '8';
}

.calendar__day:nth-child(n+9)::before {
content: "9";
.calendar__day:nth-child(n + 9)::before {
content: '9';
}

.calendar__day:nth-child(n+10)::before {
content: "10";
.calendar__day:nth-child(n + 10)::before {
content: '10';
}

.calendar__day:nth-child(n+11)::before {
content: "11";
.calendar__day:nth-child(n + 11)::before {
content: '11';
}

.calendar__day:nth-child(n+12)::before {
content: "12";
.calendar__day:nth-child(n + 12)::before {
content: '12';
}

.calendar__day:nth-child(n+13)::before {
content: "13";
.calendar__day:nth-child(n + 13)::before {
content: '13';
}

.calendar__day:nth-child(n+14)::before {
content: "14";
.calendar__day:nth-child(n + 14)::before {
content: '14';
}

.calendar__day:nth-child(n+15)::before {
content: "15";
.calendar__day:nth-child(n + 15)::before {
content: '15';
}

.calendar__day:nth-child(n+16)::before {
content: "16";
.calendar__day:nth-child(n + 16)::before {
content: '16';
}

.calendar__day:nth-child(n+17)::before {
content: "17";
.calendar__day:nth-child(n + 17)::before {
content: '17';
}

.calendar__day:nth-child(n+18)::before {
content: "18";
.calendar__day:nth-child(n + 18)::before {
content: '18';
}

.calendar__day:nth-child(n+19)::before {
content: "19";
.calendar__day:nth-child(n + 19)::before {
content: '19';
}

.calendar__day:nth-child(n+20)::before {
content: "20";
.calendar__day:nth-child(n + 20)::before {
content: '20';
}

.calendar__day:nth-child(n+21)::before {
content: "21";
.calendar__day:nth-child(n + 21)::before {
content: '21';
}

.calendar__day:nth-child(n+22)::before {
content: "22";
.calendar__day:nth-child(n + 22)::before {
content: '22';
}

.calendar__day:nth-child(n+23)::before {
content: "23";
.calendar__day:nth-child(n + 23)::before {
content: '23';
}

.calendar__day:nth-child(n+24)::before {
content: "24";
.calendar__day:nth-child(n + 24)::before {
content: '24';
}

.calendar__day:nth-child(n+25)::before {
content: "25";
.calendar__day:nth-child(n + 25)::before {
content: '25';
}

.calendar__day:nth-child(n+26)::before {
content: "26";
.calendar__day:nth-child(n + 26)::before {
content: '26';
}

.calendar__day:nth-child(n+27)::before {
content: "27";
.calendar__day:nth-child(n + 27)::before {
content: '27';
}

.calendar__day:nth-child(n+28)::before {
content: "28";
.calendar__day:nth-child(n + 28)::before {
content: '28';
}

.calendar__day:nth-child(n+29)::before {
content: "29";
.calendar__day:nth-child(n + 29)::before {
content: '29';
}

.calendar__day:nth-child(n+30)::before {
content: "30";
.calendar__day:nth-child(n + 30)::before {
content: '30';
}

.calendar__day:nth-child(n+31)::before {
content: "31";
.calendar__day:nth-child(n + 31)::before {
content: '31';
}

.calendar:hover {
Expand Down

0 comments on commit 360ae36

Please sign in to comment.