23 lines
297 B
SCSS
23 lines
297 B
SCSS
|
.clock-face {
|
||
|
position: absolute;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
top: 0;
|
||
|
bottom: 0;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
|
||
|
.cut-out, .demo-dial {
|
||
|
position: absolute;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
top: 0;
|
||
|
bottom: 0;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
|
||
|
.face {
|
||
|
fill: #11131f;
|
||
|
}
|
||
|
}
|
||
|
}
|