45 lines
895 B
CSS
45 lines
895 B
CSS
.archive-banner {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
z-index: 999999;
|
|
background: #f0f0f0;
|
|
border-bottom: 1px solid #d0d0d0;
|
|
color: #555;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
|
font-size: 14px;
|
|
text-align: center;
|
|
padding: 8px 40px 8px 10px;
|
|
box-sizing: border-box;
|
|
line-height: 1.4;
|
|
}
|
|
.archive-banner a {
|
|
color: #2a6496;
|
|
text-decoration: underline;
|
|
font-weight: 600;
|
|
}
|
|
.archive-banner a:hover {
|
|
color: #1a4a76;
|
|
}
|
|
.archive-banner-close {
|
|
position: absolute;
|
|
right: 8px;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
background: none;
|
|
border: 1px solid #ccc;
|
|
border-radius: 3px;
|
|
color: #888;
|
|
font-size: 16px;
|
|
line-height: 1;
|
|
padding: 2px 6px;
|
|
cursor: pointer;
|
|
}
|
|
.archive-banner-close:hover {
|
|
background: #e0e0e0;
|
|
color: #555;
|
|
}
|
|
body {
|
|
padding-top: 38px !important;
|
|
} |