51 lines
712 B
CSS
51 lines
712 B
CSS
@font-face {
|
|
font-family: "Digital-7 Mono";
|
|
src: url("fonts/digital-7-mono.ttf");
|
|
}
|
|
|
|
.h0us3-reloj {
|
|
font-family: "Digital-7 Mono", sans-serif;
|
|
font-size: 48px;
|
|
color: #00ff00; /* Verde */
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.2rem;
|
|
}
|
|
|
|
#h0us3-adelantar {
|
|
margin-left: 2rem;
|
|
font-size: 24px;
|
|
padding: 5px 10px;
|
|
background-color: #007bff;
|
|
color: #fff;
|
|
border: none;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
#h0us3-adelantar:hover {
|
|
background-color: #0056b3;
|
|
}
|
|
|
|
#h0us3-msg{
|
|
font-size: 24px;
|
|
}
|
|
|
|
|
|
#toplevel_page_h0us3-config .wp-menu-image img {
|
|
width: 24px;
|
|
height: auto;
|
|
padding: 5px;
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes fadeOut {
|
|
from {
|
|
opacity: 1;
|
|
}
|
|
to {
|
|
opacity: 0;
|
|
}
|
|
} |