calenderwatch_client/css/style.css

93 lines
1.3 KiB
CSS
Raw Normal View History

2020-08-13 21:40:31 +02:00
@font-face{
font-family: roboto;
src: url('JetBrainsMono-Bold.ttf');
}
.Roboto{
font-family: roboto;
}
html, body {
width: 100%;
height: 100%;
margin: 0;
overflow-y: hidden;
2020-08-13 21:40:31 +02:00
font-family: "roboto";
2020-08-13 21:04:08 +02:00
}
2020-08-13 21:40:31 +02:00
#container {
display: -webkit-flex;
-webkit-align-items: center;
width: 100%;
height: 100%
}
#canvas-layout {
position: absolute;
width: 100%;
height: 100%;
z-index: 1;
}
2020-08-13 21:04:08 +02:00
#canvas-content {
position: absolute;
width: 100%;
height: 100%;
z-index: 2;
2020-08-13 21:04:08 +02:00
}
/*
hour&minutes
*/
#digital-body {
position: absolute;
2020-08-13 21:40:31 +02:00
width: 70%;
2020-08-13 21:04:08 +02:00
width: 360px;
height: 360px;
top: 0px;
left: 0px;
background-size: 100%;
background-repeat: no-repeat;
overflow: hidden;
}
#rec-time {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
#str-hours {
2020-08-13 21:40:31 +02:00
font-size: 370%;
2020-08-13 21:04:08 +02:00
font-style: bold;
float: left;
color: white;
}
#str-console {
2020-08-13 21:40:31 +02:00
font-size: 370%;
2020-08-13 21:04:08 +02:00
font-style: bold;
float: left;
color: white;
visibility: hidden;
2020-08-13 21:04:08 +02:00
}
#str-minutes {
2020-08-13 21:40:31 +02:00
font-size: 370%;
2020-08-13 21:04:08 +02:00
font-style: bold;
float: left;
color: white;
}
#str-ampm {
2020-08-13 21:40:31 +02:00
font-size: 280%;
2020-08-13 21:04:08 +02:00
color: white;
padding-top: 20%;
}