58 lines
1.1 KiB
CSS
58 lines
1.1 KiB
CSS
@font-face {
|
|
font-family: 'IBM Plex Mono';
|
|
src: url('./fonts/IBMPlexMono-Regular.ttf') format('truetype');
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
}
|
|
|
|
.clock {
|
|
-webkit-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
/* Styles for ClockWidget time display */
|
|
.clock>.time {
|
|
color: #ffffff;
|
|
font-size: 48px;
|
|
font-family: 'IBM Plex Mono', monospace;
|
|
text-align: center;
|
|
font-size: 50cqmin;
|
|
}
|
|
|
|
.clock>.timezone {
|
|
font-size: small;
|
|
text-align: center;
|
|
color: #ffffff;
|
|
font-size: 15cqmin;
|
|
}
|
|
|
|
/* Styles for ClockWidget time display */
|
|
.quote>.quote-text {
|
|
color: #AEAEAE;
|
|
font-style: italic;
|
|
text-align: center;
|
|
font-size: 25cqmin;
|
|
}
|
|
|
|
.quote>.author {
|
|
font-size: small;
|
|
text-align: center;
|
|
color: #AEAEAE;
|
|
font-size: 15cqh;
|
|
}
|
|
|
|
/* Styles for SearchWidget */
|
|
.search form {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.search form input[type="text"] {
|
|
width: 100%;
|
|
padding: 5px;
|
|
border: 1px solid rgba(255, 255, 255, 0.5);
|
|
border-radius: 4px;
|
|
background: rgba(255, 255, 255, 1);
|
|
color: #000;
|
|
} |