24 lines
390 B
CSS
24 lines
390 B
CSS
.clock-container {
|
|
position: absolute;
|
|
top: 1.5rem;
|
|
right: 2rem;
|
|
text-align: right;
|
|
font-family: 'Rajdhani', sans-serif;
|
|
color: #00f0ff;
|
|
text-shadow: 0 0 6px rgba(0, 255, 255, 0.3);
|
|
font-size: 1rem;
|
|
line-height: 1.2;
|
|
user-select: none;
|
|
}
|
|
|
|
.clock-time {
|
|
font-size: 2.1rem;
|
|
display: block;
|
|
margin-bottom: 0.2rem;
|
|
}
|
|
|
|
.clock-date {
|
|
font-size: 1rem;
|
|
color: #999;
|
|
}
|