Skip to content

Commit f094871

Browse files
committed
Update event - Kopie.md
1 parent 396c5da commit f094871

File tree

1 file changed

+17
-5
lines changed

1 file changed

+17
-5
lines changed

_pages/event - Kopie.md

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,25 +74,37 @@ body {
7474
.schedule-day-header {
7575
background-color: #00618F;
7676
color: white;
77-
padding: 15px;
77+
padding: 10px 20px; /* Reduced padding */
7878
cursor: pointer;
7979
display: flex;
8080
justify-content: space-between;
8181
align-items: center;
82-
border-radius: 10px;
83-
transition: background-color 0.3s ease;
82+
border-radius: 8px; /* Slightly rounded corners */
83+
transition: background-color 0.3s ease, box-shadow 0.3s ease;
84+
max-width: 600px; /* Limiting the width */
85+
margin: 0 auto; /* Center the banner */
86+
box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* Add a soft shadow for a cleaner look */
87+
font-size: 1rem; /* Adjusting font size for better readability */
88+
text-align: center; /* Center the text */
8489
}
8590

8691
.schedule-day-header:hover {
8792
background-color: #3280a5;
93+
box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* Slightly increase shadow on hover */
8894
}
8995

9096
.schedule-day-content {
9197
background-color: white;
9298
border: 1px solid #ddd;
93-
border-radius: 10px;
94-
padding: 20px; /* Added extra padding for a more spacious look */
99+
border-radius: 8px;
100+
padding: 15px;
95101
display: none;
102+
max-width: 600px; /* Ensure content aligns with header */
103+
margin: 0 auto; /* Center the content as well */
104+
}
105+
106+
.expand-icon {
107+
font-size: 1.2rem;
96108
}
97109

98110
.schedule-day-content.show {

0 commit comments

Comments
 (0)