-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
123 lines (109 loc) · 2.35 KB
/
Copy pathstyle.css
File metadata and controls
123 lines (109 loc) · 2.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Arial Rounded MT Bold", sans-serif;
font-weight: 400;
color: #666; /* Light gray */
}
html {
font-size: 62.5%;
}
.container {
width: 100%;
height: 100vh;
background: linear-gradient(to top, #cd9cf2 0%, #f6f3ff 100%);
color: white;
display: flex;
justify-content: center;
align-items: center;
}
.calendar {
width: 80rem;
height: 60rem;
background: linear-gradient(to top, #c471f5 0%, #fa71cd 100%);
box-shadow: 0 0.2rem 2rem rgb(0, 0, 0, 0.2);
display: flex;
flex-direction: column;
padding: 1rem;
border-radius: 10px;
}
.month {
width: 100%;
height: 12rem;
background-color: #fa71cd;
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem;
text-align: center;
text-shadow: 0 0.3rem 0.5rem rgb(0, 0, 0, 0.5);
border-top-left-radius: 1rem;
border-top-right-radius: 1rem;
}
.month i {
font-size: 2.5rem;
cursor: pointer;
color: #f5f7f8;
}
.month h1 {
font-size: 3rem;
font-weight: 400;
text-transform: uppercase;
letter-spacing: 0.2rem;
color: #f5f7f8;
}
.month p {
font-size: 1.6rem;
color: rgba(255, 255, 255, 0.8);
}
.weekdays {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 1rem;
text-align: center;
font-size: 1.6rem;
font-weight: 500;
color: #333;
background-color: #f6f3ff;
padding: 1rem;
border-radius: 10px;
}
.weekdays div {
padding: 1rem;
background-color: #f9f5f6;
border-radius: 5px;
box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
}
.days {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 1rem;
padding: 1rem;
}
.days div {
background-color: #f9f5f6;
height: 5rem;
display: flex;
justify-content: center;
align-items: center;
border-radius: 10px;
font-size: 1.4rem;
color: #666;
box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
transition: background-color 0.2s, transform 0.2s;
}
.days div:hover {
background-color: #edd5ff;
cursor: pointer;
transform: scale(1.05);
}
.prev-date,
.next-date {
opacity: 0.5;
}
.today {
color: #3e3e3e !important; /* Make the text color match the border */
font-weight: bold !important;
background-color: #cd9cf2 !important; /* Add a background color */
}