44 lines
631 B
CSS
44 lines
631 B
CSS
|
body {
|
||
|
font-family: Nunito, Kosugi Maru !important;
|
||
|
}
|
||
|
|
||
|
body.bg-white {
|
||
|
background-color: floralwhite;
|
||
|
}
|
||
|
|
||
|
#site_title {
|
||
|
filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.6));
|
||
|
}
|
||
|
|
||
|
#site_title:hover {
|
||
|
opacity: .9;
|
||
|
}
|
||
|
|
||
|
#menu {
|
||
|
margin-top: auto;
|
||
|
filter: drop-shadow(1px 1px 1.5px rgba(0, 0, 0, 0.6));
|
||
|
}
|
||
|
|
||
|
#search {
|
||
|
margin-top: auto;
|
||
|
}
|
||
|
|
||
|
footer.bg-gray-200 {
|
||
|
background-color: aliceblue;
|
||
|
}
|
||
|
|
||
|
html {
|
||
|
display: none;
|
||
|
animation: fadeIn 0.3s ease;
|
||
|
}
|
||
|
|
||
|
@keyframes fadeIn {
|
||
|
0% {
|
||
|
opacity: 0;
|
||
|
/* 透明 */
|
||
|
}
|
||
|
|
||
|
100% {
|
||
|
opacity: 1;
|
||
|
}
|
||
|
}
|