-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpython.css
More file actions
38 lines (34 loc) · 916 Bytes
/
python.css
File metadata and controls
38 lines (34 loc) · 916 Bytes
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
.week-selection {
text-align: center;
margin: 20px;
}
.week-buttons {
display: flex;
flex-direction: column; /* Makes buttons appear one below the other */
align-items: center;
gap: 15px; /* Space between buttons */
}
.week-button {
background: linear-gradient(135deg, #ff7eb3, #ff758c);
color: white;
font-size: 18px;
font-weight: bold;
padding: 12px 20px;
border: none;
border-radius: 8px;
cursor: pointer;
width: 80%;
max-width: 300px;
transition: all 0.3s ease-in-out;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.week-button:hover {
background: linear-gradient(135deg, #ff758c, #ff7eb3);
transform: scale(1.05);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
/* Button Click Animation */
.week-button:active {
transform: scale(0.95);
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}