24 lines
326 B
SCSS
24 lines
326 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: 900px;
|
|
|
|
font-family: 'Source Code Pro';
|
|
font-weight: 600;
|
|
font-size: 60px;
|
|
|
|
color: white;
|
|
}
|