23 lines
308 B
SCSS
23 lines
308 B
SCSS
|
#clock {
|
||
|
position: relative;
|
||
|
top: 0px;
|
||
|
left: 0px;
|
||
|
|
||
|
width: $full-width;
|
||
|
height: $full-height;
|
||
|
overflow: hidden;
|
||
|
|
||
|
z-index: 1000;
|
||
|
}
|
||
|
|
||
|
.clock {
|
||
|
position: absolute;
|
||
|
|
||
|
top: 240px;
|
||
|
left: 1144px;
|
||
|
|
||
|
font-family: 'Source Code Pro';
|
||
|
font-weight: 600;
|
||
|
font-size: 60px;
|
||
|
}
|