Compare commits
3 Commits
aa75b48558
...
81597a94d2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
81597a94d2 | ||
|
|
21304b8925 | ||
|
|
b1f289ba4f |
95
style.css
95
style.css
@@ -1,78 +1,99 @@
|
|||||||
|
|
||||||
body {
|
body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
||||||
background: linear-gradient(135deg, #f4f8ff, #d9eaff);
|
background: linear-gradient(135deg, #e9f0ff, #c9dbff);
|
||||||
color: #333;
|
color: #2c2c2c;
|
||||||
|
padding-bottom: 50px;
|
||||||
|
transition: background 0.4s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
header {
|
header {
|
||||||
background: #4a85ff;
|
background: linear-gradient(135deg, #eeeeee, #fd98dd );
|
||||||
color: white;
|
color: white;
|
||||||
padding: 20px 40px;
|
padding: 25px 40px;
|
||||||
font-size: 26px;
|
font-size: 28px;
|
||||||
font-weight: bold;
|
|
||||||
text-align: center;
|
text-align: center;
|
||||||
box-shadow: 0 3px 8px rgba(0,0,0,0.2);
|
font-weight: 700;
|
||||||
|
letter-spacing: 1px;
|
||||||
|
box-shadow: 0 4px 15px rgba(0,0,0,0.25);
|
||||||
|
border-bottom-left-radius: 20px;
|
||||||
|
border-bottom-right-radius: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
main {
|
main {
|
||||||
max-width: 900px;
|
max-width: 900px;
|
||||||
margin: 40px auto;
|
margin: 50px auto;
|
||||||
background: white;
|
background: #ffffff;
|
||||||
padding: 30px;
|
padding: 40px;
|
||||||
border-radius: 15px;
|
border-radius: 18px;
|
||||||
box-shadow: 0 5px 20px rgba(0,0,0,0.15);
|
box-shadow: 0 10px 30px rgba(0,0,0,0.12);
|
||||||
|
animation: fadeIn 0.7s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
#monthDisplay {
|
@keyframes fadeIn {
|
||||||
font-size: 24px;
|
from { opacity: 0; transform: translateY(25px); }
|
||||||
font-weight: bold;
|
to { opacity: 1; transform: translateY(0); }
|
||||||
margin-bottom: 20px;
|
|
||||||
text-align: center;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#monthDisplay {
|
||||||
|
font-size: 26px;
|
||||||
|
font-weight: bold;
|
||||||
|
text-align: center;
|
||||||
|
margin-bottom: 25px;
|
||||||
|
background: linear-gradient(135deg, #4a85ff, #eeeeee, #fd98dd #6aa1ff);
|
||||||
|
text-shadow: 0 2px 6px rgba(0,0,0,0.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
button {
|
button {
|
||||||
display: block;
|
display: block;
|
||||||
margin: 0 auto;
|
margin: 0 auto 20px auto;
|
||||||
padding: 15px 30px;
|
padding: 15px 35px;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
background: #4a85ff;
|
background: linear-gradient(135deg, #4a85ff, #eeeeee, #fd98dd #6aa1ff);
|
||||||
color: white;
|
color: rgb(253, 144, 195);
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 10px;
|
border-radius: 12px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: 0.2s;
|
transition: 0.25s;
|
||||||
box-shadow: 0 4px 10px rgba(0,0,0,0.2);
|
box-shadow: 0 5px 15px rgba(0,0,0,0.25);
|
||||||
}
|
}
|
||||||
|
|
||||||
button:hover {
|
button:hover {
|
||||||
background: #3467d8;
|
background: linear-gradient(135deg, #3c6fd1, #5b8fff);
|
||||||
transform: scale(1.03);
|
transform: translateY(-3px) scale(1.05);
|
||||||
|
box-shadow: 0 8px 20px rgba(0,0,0,0.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
button:active {
|
button:active {
|
||||||
transform: scale(0.98);
|
transform: scale(0.95);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#rabbitContainer {
|
#rabbitContainer {
|
||||||
margin-top: 30px;
|
margin-top: 35px;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
gap: 12px;
|
gap: 14px;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.rabbit {
|
.rabbit {
|
||||||
font-size: 36px;
|
font-size: 40px;
|
||||||
background: #eef4ff;
|
background: #f4f8ff;
|
||||||
padding: 10px 14px;
|
padding: 14px 18px;
|
||||||
border-radius: 12px;
|
border-radius: 14px;
|
||||||
box-shadow: 0 3px 8px rgba(0,0,0,0.15);
|
box-shadow: 0 5px 15px rgba(0,0,0,0.15);
|
||||||
|
transition: 0.2s ease;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
transition: transform 0.15s;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.rabbit:hover {
|
.rabbit:hover {
|
||||||
transform: scale(1.15) rotate(3deg);
|
transform: scale(1.2) rotate(4deg);
|
||||||
}
|
background: #e7eef
|
||||||
|
|||||||
Reference in New Issue
Block a user