2022-07-29 21:12:42 +00:00
|
|
|
.weather-display {
|
|
|
|
width: 640px;
|
|
|
|
height: 480px;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
background-image: url(../images/BackGround1_1.png);
|
2022-08-04 16:07:35 +00:00
|
|
|
/* this method is required to hide blocks so they can be measured while off screen */
|
|
|
|
height: 0px;
|
2022-07-29 21:12:42 +00:00
|
|
|
}
|
|
|
|
.weather-display.show {
|
2022-08-04 16:07:35 +00:00
|
|
|
height: 480px;
|
2022-07-29 21:12:42 +00:00
|
|
|
}
|
|
|
|
.weather-display .template {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.weather-display .header {
|
|
|
|
width: 640px;
|
|
|
|
height: 60px;
|
|
|
|
padding-top: 30px;
|
|
|
|
}
|
|
|
|
.weather-display .header .title {
|
|
|
|
color: yellow;
|
|
|
|
/* eventually, when chrome supports paint-order for html elements */
|
|
|
|
/* -webkit-text-stroke: 2px black; */
|
|
|
|
/* paint-order: stroke fill; */
|
|
|
|
text-shadow: 3px 3px 0 black, -1.5px -1.5px 0 black, 0 -1.5px 0 black, 1.5px -1.5px 0 black, 1.5px 0 0 black, 1.5px 1.5px 0 black, 0 1.5px 0 black, -1.5px 1.5px 0 black, -1.5px 0 0 black;
|
|
|
|
font-family: "Star4000";
|
|
|
|
font-size: 24pt;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
.weather-display .header .title.single {
|
|
|
|
left: 170px;
|
|
|
|
top: 25px;
|
|
|
|
}
|
|
|
|
.weather-display .header .title.dual {
|
|
|
|
left: 170px;
|
|
|
|
}
|
|
|
|
.weather-display .header .title.dual > div {
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
.weather-display .header .title.dual .top {
|
|
|
|
top: -3px;
|
|
|
|
}
|
|
|
|
.weather-display .header .title.dual .bottom {
|
|
|
|
top: 26px;
|
|
|
|
}
|
|
|
|
.weather-display .header .logo {
|
|
|
|
top: 30px;
|
|
|
|
left: 50px;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 10;
|
|
|
|
}
|
|
|
|
.weather-display .header .noaa-logo {
|
|
|
|
position: absolute;
|
|
|
|
top: 39px;
|
|
|
|
left: 356px;
|
|
|
|
}
|
|
|
|
.weather-display .header .title.single {
|
|
|
|
top: 40px;
|
|
|
|
}
|
|
|
|
.weather-display .header .date-time {
|
|
|
|
white-space: pre;
|
|
|
|
color: white;
|
|
|
|
font-family: "Star4000 Small";
|
|
|
|
font-size: 24pt;
|
|
|
|
/* eventually, when chrome supports paint-order for html elements */
|
|
|
|
/* -webkit-text-stroke: 2px black; */
|
|
|
|
/* paint-order: stroke fill; */
|
|
|
|
text-shadow: 3px 3px 0 black, -1.5px -1.5px 0 black, 0 -1.5px 0 black, 1.5px -1.5px 0 black, 1.5px 0 0 black, 1.5px 1.5px 0 black, 0 1.5px 0 black, -1.5px 1.5px 0 black, -1.5px 0 0 black;
|
|
|
|
left: 415px;
|
|
|
|
width: 170px;
|
|
|
|
text-align: right;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
.weather-display .header .date-time.date {
|
|
|
|
padding-top: 22px;
|
|
|
|
}
|
2022-08-03 21:32:13 +00:00
|
|
|
.weather-display .main {
|
|
|
|
position: relative;
|
|
|
|
}
|
2022-07-29 21:12:42 +00:00
|
|
|
.weather-display .main.has-scroll {
|
|
|
|
width: 640px;
|
|
|
|
height: 310px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2022-08-03 21:32:13 +00:00
|
|
|
.weather-display .main.has-box {
|
|
|
|
margin-left: 64px;
|
|
|
|
margin-right: 64px;
|
|
|
|
width: calc(100% - 128px);
|
|
|
|
}
|
2022-07-29 21:12:42 +00:00
|
|
|
.weather-display .scroll {
|
|
|
|
width: 640px;
|
|
|
|
height: 80px;
|
|
|
|
overflow: hidden;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
2022-08-04 16:25:17 +00:00
|
|
|
.weather-display .main.hourly.main {
|
2022-07-29 21:12:42 +00:00
|
|
|
overflow-y: hidden;
|
|
|
|
}
|
2022-08-04 16:25:17 +00:00
|
|
|
.weather-display .main.hourly.main .column-headers {
|
2022-07-29 21:12:42 +00:00
|
|
|
background-color: rgb(32, 0, 87);
|
|
|
|
height: 20px;
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2022-08-04 16:25:17 +00:00
|
|
|
.weather-display .main.hourly.main .column-headers {
|
2022-07-29 21:12:42 +00:00
|
|
|
position: -webkit-sticky;
|
|
|
|
position: sticky;
|
|
|
|
top: 0px;
|
|
|
|
z-index: 5;
|
|
|
|
}
|
2022-08-04 16:25:17 +00:00
|
|
|
.weather-display .main.hourly.main .column-headers div {
|
2022-07-29 21:12:42 +00:00
|
|
|
display: inline-block;
|
|
|
|
font-family: "Star4000 Small";
|
|
|
|
font-size: 24pt;
|
|
|
|
color: yellow;
|
|
|
|
position: absolute;
|
|
|
|
top: -14px;
|
|
|
|
z-index: 5;
|
|
|
|
/* eventually, when chrome supports paint-order for html elements */
|
|
|
|
/* -webkit-text-stroke: 2px black; */
|
|
|
|
/* paint-order: stroke fill; */
|
|
|
|
text-shadow: 3px 3px 0 black, -1.5px -1.5px 0 black, 0 -1.5px 0 black, 1.5px -1.5px 0 black, 1.5px 0 0 black, 1.5px 1.5px 0 black, 0 1.5px 0 black, -1.5px 1.5px 0 black, -1.5px 0 0 black;
|
|
|
|
}
|
2022-08-04 16:25:17 +00:00
|
|
|
.weather-display .main.hourly.main .column-headers .temp {
|
2022-07-29 21:12:42 +00:00
|
|
|
left: 370px;
|
|
|
|
}
|
2022-08-04 16:25:17 +00:00
|
|
|
.weather-display .main.hourly.main .column-headers .like {
|
2022-07-29 21:12:42 +00:00
|
|
|
left: 450px;
|
|
|
|
}
|
2022-08-04 16:25:17 +00:00
|
|
|
.weather-display .main.hourly.main .column-headers .wind {
|
2022-07-29 21:12:42 +00:00
|
|
|
left: 560px;
|
|
|
|
}
|
2022-08-04 16:25:17 +00:00
|
|
|
.weather-display .main.hourly.main .hourly-lines {
|
2022-07-29 21:12:42 +00:00
|
|
|
min-height: 338px;
|
|
|
|
padding-top: 10px;
|
|
|
|
background: repeating-linear-gradient(0deg, #001040 0px, #102080 136px, #102080 202px, #001040 338px);
|
|
|
|
}
|
2022-08-04 16:25:17 +00:00
|
|
|
.weather-display .main.hourly.main .hourly-lines .hourly-row {
|
2022-07-29 21:12:42 +00:00
|
|
|
font-family: "Star4000 Large";
|
|
|
|
font-size: 24pt;
|
|
|
|
height: 72px;
|
|
|
|
color: yellow;
|
|
|
|
/* eventually, when chrome supports paint-order for html elements */
|
|
|
|
/* -webkit-text-stroke: 2px black; */
|
|
|
|
/* paint-order: stroke fill; */
|
|
|
|
text-shadow: 3px 3px 0 black, -1.5px -1.5px 0 black, 0 -1.5px 0 black, 1.5px -1.5px 0 black, 1.5px 0 0 black, 1.5px 1.5px 0 black, 0 1.5px 0 black, -1.5px 1.5px 0 black, -1.5px 0 0 black;
|
|
|
|
position: relative;
|
|
|
|
}
|
2022-08-04 16:25:17 +00:00
|
|
|
.weather-display .main.hourly.main .hourly-lines .hourly-row > div {
|
2022-07-29 21:12:42 +00:00
|
|
|
position: absolute;
|
|
|
|
white-space: pre;
|
|
|
|
top: 8px;
|
|
|
|
}
|
2022-08-04 16:25:17 +00:00
|
|
|
.weather-display .main.hourly.main .hourly-lines .hourly-row .hour {
|
2022-07-29 21:12:42 +00:00
|
|
|
left: 50px;
|
|
|
|
}
|
2022-08-04 16:25:17 +00:00
|
|
|
.weather-display .main.hourly.main .hourly-lines .hourly-row .icon {
|
2022-07-29 21:12:42 +00:00
|
|
|
left: 280px;
|
|
|
|
width: 70px;
|
|
|
|
text-align: center;
|
|
|
|
top: unset;
|
|
|
|
}
|
2022-08-04 16:25:17 +00:00
|
|
|
.weather-display .main.hourly.main .hourly-lines .hourly-row .temp {
|
2022-07-29 21:12:42 +00:00
|
|
|
left: 370px;
|
|
|
|
}
|
2022-08-04 16:25:17 +00:00
|
|
|
.weather-display .main.hourly.main .hourly-lines .hourly-row .like {
|
2022-07-29 21:12:42 +00:00
|
|
|
left: 450px;
|
|
|
|
}
|
2022-08-04 16:25:17 +00:00
|
|
|
.weather-display .main.hourly.main .hourly-lines .hourly-row .wind {
|
2022-07-29 21:12:42 +00:00
|
|
|
left: 530px;
|
|
|
|
width: 100px;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2022-08-04 16:25:17 +00:00
|
|
|
.weather-display .main.current-weather.main .col {
|
2022-07-29 21:12:42 +00:00
|
|
|
height: 50px;
|
|
|
|
width: 255px;
|
|
|
|
display: inline-block;
|
|
|
|
margin-top: 10px;
|
|
|
|
position: absolute;
|
|
|
|
/* eventually, when chrome supports paint-order for html elements */
|
|
|
|
/* -webkit-text-stroke: 2px black; */
|
|
|
|
/* paint-order: stroke fill; */
|
|
|
|
text-shadow: 3px 3px 0 black, -1.5px -1.5px 0 black, 0 -1.5px 0 black, 1.5px -1.5px 0 black, 1.5px 0 0 black, 1.5px 1.5px 0 black, 0 1.5px 0 black, -1.5px 1.5px 0 black, -1.5px 0 0 black;
|
|
|
|
}
|
2022-08-04 16:25:17 +00:00
|
|
|
.weather-display .main.current-weather.main .col.left {
|
2022-07-29 21:12:42 +00:00
|
|
|
font-family: "Star4000 Extended";
|
|
|
|
font-size: 24pt;
|
|
|
|
}
|
2022-08-04 16:25:17 +00:00
|
|
|
.weather-display .main.current-weather.main .col.right {
|
2022-08-03 21:32:13 +00:00
|
|
|
right: 0px;
|
2022-07-29 21:12:42 +00:00
|
|
|
font-family: "Star4000 Large";
|
|
|
|
font-size: 20px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2022-08-04 16:25:17 +00:00
|
|
|
.weather-display .main.current-weather.main .col.right .row {
|
2022-08-03 21:32:13 +00:00
|
|
|
margin-bottom: 12px;
|
2022-07-29 21:12:42 +00:00
|
|
|
}
|
2022-08-04 16:25:17 +00:00
|
|
|
.weather-display .main.current-weather.main .col.right .row .label,
|
|
|
|
.weather-display .main.current-weather.main .col.right .row .value {
|
2022-07-29 21:12:42 +00:00
|
|
|
display: inline-block;
|
|
|
|
}
|
2022-08-04 16:25:17 +00:00
|
|
|
.weather-display .main.current-weather.main .col.right .row .label {
|
2022-07-29 21:12:42 +00:00
|
|
|
margin-left: 20px;
|
|
|
|
}
|
2022-08-04 16:25:17 +00:00
|
|
|
.weather-display .main.current-weather.main .col.right .row .value {
|
2022-07-29 21:12:42 +00:00
|
|
|
float: right;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
2022-08-04 16:25:17 +00:00
|
|
|
.weather-display .main.current-weather.main .center {
|
2022-07-29 21:12:42 +00:00
|
|
|
text-align: center;
|
|
|
|
}
|
2022-08-04 16:25:17 +00:00
|
|
|
.weather-display .main.current-weather.main .temp {
|
2022-07-29 21:12:42 +00:00
|
|
|
font-family: "Star4000 Large";
|
|
|
|
font-size: 24pt;
|
|
|
|
}
|
2022-08-04 16:25:17 +00:00
|
|
|
.weather-display .main.current-weather.main .icon {
|
2022-07-29 21:12:42 +00:00
|
|
|
height: 100px;
|
|
|
|
}
|
2022-08-04 16:25:17 +00:00
|
|
|
.weather-display .main.current-weather.main .icon img {
|
2022-07-29 21:12:42 +00:00
|
|
|
max-width: 126px;
|
|
|
|
}
|
2022-08-04 16:25:17 +00:00
|
|
|
.weather-display .main.current-weather.main .wind-container {
|
2022-07-29 21:12:42 +00:00
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
2022-08-04 16:25:17 +00:00
|
|
|
.weather-display .main.current-weather.main .wind-container > div {
|
2022-07-29 21:12:42 +00:00
|
|
|
width: 45%;
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0px;
|
|
|
|
}
|
2022-08-04 16:25:17 +00:00
|
|
|
.weather-display .main.current-weather.main .wind-container .wind-label {
|
2022-07-29 21:12:42 +00:00
|
|
|
margin-left: 5px;
|
|
|
|
}
|
2022-08-04 16:25:17 +00:00
|
|
|
.weather-display .main.current-weather.main .wind-container .wind {
|
2022-07-29 21:12:42 +00:00
|
|
|
text-align: right;
|
|
|
|
}
|
2022-08-04 16:25:17 +00:00
|
|
|
.weather-display .main.current-weather.main .wind-gusts {
|
2022-07-29 21:12:42 +00:00
|
|
|
margin-left: 5px;
|
|
|
|
}
|
2022-08-04 16:25:17 +00:00
|
|
|
.weather-display .main.current-weather.main .location {
|
2022-07-29 21:12:42 +00:00
|
|
|
color: yellow;
|
|
|
|
margin-bottom: 10px;
|
2022-08-04 16:07:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.weather-display .local-forecast .container {
|
|
|
|
position: relative;
|
|
|
|
top: 15px;
|
|
|
|
margin: 0px 10px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
height: 280px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.weather-display .local-forecast .forecasts {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.weather-display .local-forecast .forecast {
|
|
|
|
font-family: "Star4000";
|
|
|
|
font-size: 24pt;
|
|
|
|
text-transform: uppercase;
|
|
|
|
/* eventually, when chrome supports paint-order for html elements */
|
|
|
|
/* -webkit-text-stroke: 2px black; */
|
|
|
|
/* paint-order: stroke fill; */
|
|
|
|
text-shadow: 3px 3px 0 black, -1.5px -1.5px 0 black, 0 -1.5px 0 black, 1.5px -1.5px 0 black, 1.5px 0 0 black, 1.5px 1.5px 0 black, 0 1.5px 0 black, -1.5px 1.5px 0 black, -1.5px 0 0 black;
|
|
|
|
min-height: 280px;
|
|
|
|
line-height: 40px;
|
2022-07-29 21:12:42 +00:00
|
|
|
}/*# sourceMappingURL=compiled.css.map */
|