No edit summary |
No edit summary Tag: Reverted |
||
Line 5: | Line 5: | ||
margin: 20px auto; | margin: 20px auto; | ||
width: 50%; | width: 50%; | ||
position: relative; | |||
} | } | ||
#logo:hover img { | #logo:hover img { | ||
transform: none !important; | transform: none !important; | ||
} | |||
@keyframes preload { | |||
0% { | |||
background-image: url('/images/c/c2/Twogpedia.png'); | |||
} | |||
100% { | |||
background-image: none; | |||
} | |||
} | |||
#logo::before { | |||
content: ''; | |||
position: absolute; | |||
width: 0; | |||
height: 0; | |||
overflow: hidden; | |||
background-image: url('/images/c/c2/Twogpedia.png'); | |||
animation: preload 0.001s linear infinite; | |||
} | } | ||
Revision as of 20:23, 5 March 2024
/* CSS placed here will be applied to all skins */
#logo {
display: block;
margin: 20px auto;
width: 50%;
position: relative;
}
#logo:hover img {
transform: none !important;
}
@keyframes preload {
0% {
background-image: url('/images/c/c2/Twogpedia.png');
}
100% {
background-image: none;
}
}
#logo::before {
content: '';
position: absolute;
width: 0;
height: 0;
overflow: hidden;
background-image: url('/images/c/c2/Twogpedia.png');
animation: preload 0.001s linear infinite;
}
table {
width: 100%;
table-layout: fixed;
border-collapse: collapse;
border: 2px solid #333;
background-color: #c1c3ff;
}
td {
padding: 15px;
text-align: center;
border: 2px solid #333;
box-sizing: border-box;
width: 25%;
white-space: nowrap;
}
.last-modified-bar {
display: none;
}
@media (max-width: 768px) {
td {
padding: 10px;
}
}
@media (min-width: 441px) and (max-width: 744px) {
td {
width: 10%;
}
}
@media (max-width: 680px) {
#logo img {
display: block;
margin: 20px auto;
width: 100%;
height: 100%;
max-height: auto;
}
}