60 lines
1.3 KiB
CSS
60 lines
1.3 KiB
CSS
@font-face {
|
|
font-family: "Material Symbols Outlined";
|
|
font-style: normal;
|
|
src: url("./fonts/MaterialSymbolsOutlined[FILL,GRAD,opsz,wght].woff2") format("woff");
|
|
}
|
|
html,
|
|
body {
|
|
font-size: 24px;
|
|
height: 100%;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
padding: 0;
|
|
}
|
|
html #weather-panel,
|
|
body #weather-panel {
|
|
border-radius: 50px;
|
|
box-shadow: #999a 0 0 25px;
|
|
color: #fff;
|
|
font-family: Verdana, sans-serif;
|
|
font-weight: bold;
|
|
height: 500px;
|
|
left: calc(50% - 275px);
|
|
padding: 25px;
|
|
position: absolute;
|
|
text-shadow: #000 1px 1px, #000 -1px 1px, #000 -1px -1px, #000 1px -1px;
|
|
top: calc(50% - 250px);
|
|
width: 500px;
|
|
z-index: 10;
|
|
}
|
|
html #weather-panel .material,
|
|
body #weather-panel .material {
|
|
font-family: "Material Symbols Outlined";
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
display: inline-block;
|
|
line-height: 1;
|
|
text-transform: none;
|
|
letter-spacing: normal;
|
|
word-wrap: normal;
|
|
white-space: nowrap;
|
|
direction: ltr;
|
|
vertical-align: text-bottom;
|
|
}
|
|
@supports (-webkit-text-stroke: 1px #000) {
|
|
html #weather-panel,
|
|
body #weather-panel {
|
|
-webkit-text-stroke: 1px #000;
|
|
-webkit-text-fill-color: #fff;
|
|
}
|
|
}
|
|
html #weather-panel #time,
|
|
body #weather-panel #time {
|
|
font-size: 3rem;
|
|
text-align: center;
|
|
}
|
|
html #weather-panel section header,
|
|
body #weather-panel section header {
|
|
font-size: 1.5rem;
|
|
}
|