openCountdown/static/css/styles.css

37 lines
527 B
CSS
Raw Normal View History

2022-02-23 21:55:13 +01:00
html, body {
height: 100%;
width: 100%;
background-color: black;
color: white;
overflow: hidden;
margin: 0px;
}
.container {
margin: 0px;
width: 100%;
height: 100%;
outline: dashed 1px black;
display: flex;
margin-left: auto;
margin-right: auto;
/* Setup */
position: relative;
justify-content: center;
align-items: center;
}
.timer {
2022-02-24 19:11:13 +01:00
font-size: 20em;
2022-02-23 21:55:13 +01:00
text-align: center;
2022-02-24 19:11:13 +01:00
font-variant-numeric: tabular-nums;
font-family: sans-serif;
2022-02-23 21:55:13 +01:00
}
.testImg{
height: 100%;
width: 100%;
2022-02-24 19:11:13 +01:00
}