1
- * {
2
- margin : 0 ;
3
- padding : 0 ;
4
- box-sizing : border-box ;
5
- font-family : sans-serif ;
1
+ * {
2
+ margin : 0 ;
3
+ padding : 0 ;
4
+ font-family : sans-serif ;
5
+ box-sizing : border-box ;
6
6
}
7
7
8
- .container {
9
- width : 100% ;
10
- height : 100vh ;
11
- background-color : salmon;
12
- color : lightgray;
13
- display : flex;
14
- justify-content : center;
15
- align-items : center;
8
+ .container {
9
+ width : 100% ;
10
+ height : 100vh ;
11
+ background-color : salmon;
12
+ display : flex;
13
+ justify-content : center;
14
+ align-items : center;
16
15
}
17
16
18
- .calendar {
19
- width : 450px ;
20
- height : 520px ;
21
- background-color : black;
22
- box-shadow : 4px 4px 8px rgba (0 , 0 , 0 , 0.4 );
23
- border-radius : 10px ;
17
+ .calender {
18
+ background-color : black;
19
+ color : lightgray;
20
+ width : 450px ;
21
+ height : 520px ;
22
+ border-radius : 10px ;
23
+ box-shadow : 4px 4px 8px rgba (0 , 0 , 0 , .4 );
24
24
}
25
25
26
- .month {
27
- width : 100% ;
28
- height : 120px ;
29
- background-color : lightseagreen;
30
- display : flex;
31
- justify-content : center;
32
- align-items : center;
33
- padding : 0 20px ;
34
- text-align : center;
35
- border-radius : 10px 10px 0 0 ;
26
+ .month {
27
+ width : 100% ;
28
+ height : 120px ;
29
+ background-color : lightseagreen;
30
+ display : flex;
31
+ justify-content : center;
32
+ align-items : center;
33
+ text-align : center;
34
+ border-radius : 10px 10px 0 0 ;
36
35
}
37
36
38
- .month i {
39
- font-size : 25px ;
40
- cursor : pointer;
37
+ .month h1 {
38
+ font-size : 30px ;
39
+ font-weight : 400 ;
40
+ text-transform : uppercase;
41
41
}
42
42
43
- .month h1 {
44
- font-size : 30px ;
45
- font-weight : 400 ;
46
- text-transform : uppercase;
47
- letter-spacing : 2px ;
48
- margin-bottom : 1px ;
43
+ .month p {
44
+ font-size : 16px ;
49
45
}
50
46
51
- .month p {
52
- font-size : 16px ;
53
-
54
- }
55
-
56
- .weekdays {
57
- width : 100% ;
58
- height : 50px ;
59
- display : flex;
47
+ .weekdays {
48
+ width : 100% ;
49
+ height : 50px ;
50
+ display : flex;
60
51
}
61
52
62
- .weekdays div {
63
- font-size : 15px ;
64
- font-weight : bold;
65
- letter-spacing : 1px ;
66
- width : 100% ;
67
- display : flex;
68
- align-items : center;
69
- justify-content : center;
53
+ .weekdays div {
54
+ font-size : 15px ;
55
+ font-weight : bold;
56
+ letter-spacing : 1px ;
57
+ width : 100% ;
58
+ display : flex;
59
+ align-items : center;
60
+ justify-content : center;
70
61
}
71
62
72
- .days {
73
- width : 100% ;
74
- display : flex;
75
- flex-wrap : wrap;
76
- padding : 2px ;
63
+ .days {
64
+ width : 100% ;
65
+ display : flex;
66
+ flex-wrap : wrap;
67
+ padding : 2px ;
77
68
}
78
69
79
- .days div {
80
- font-size : 14px ;
81
- margin : 3px ;
82
- width : 57.5px ;
83
- height : 50px ;
84
- display : flex;
85
- justify-content : center;
86
- align-items : center;
70
+ .days div {
71
+ font-size : 14px ;
72
+ margin : 3px ;
73
+ width : 57.5px ;
74
+ height : 50px ;
75
+ display : flex;
76
+ justify-content : center;
77
+ align-items : center;
87
78
}
88
79
89
- .days div : hover : not (.empty ) {
90
- border : 2px solid gray;
91
- cursor : pointer;
80
+ .days div : hover : not (.empty ){
81
+ border : 2px solid gray;
82
+ cursor : pointer;
92
83
}
93
84
94
- .today {
95
- background-color : lightseagreen;
96
-
97
- }
85
+ .today {
86
+ background-color : lightseagreen;
87
+ }
0 commit comments