WeatherDashboard/WeatherDashboard.Web/wwwroot/css/site.css

93 lines
1.6 KiB
CSS
Raw Normal View History

2023-02-09 02:30:14 +00:00
html {
2023-03-18 15:16:24 +00:00
font-size: 20px;
2023-02-09 02:30:14 +00:00
}
2023-02-16 15:06:43 +00:00
/*@media (min-width: 768px) {
2023-02-09 02:30:14 +00:00
html {
font-size: 16px;
}
2023-02-16 15:06:43 +00:00
}*/
2023-02-09 02:30:14 +00:00
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
2023-03-18 15:16:24 +00:00
box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
2023-02-09 02:30:14 +00:00
}
html {
2023-03-18 15:16:24 +00:00
position: relative;
min-height: 100%;
2023-02-09 02:30:14 +00:00
}
body {
2023-02-10 03:33:02 +00:00
font-family: 'Montserrat', sans-serif;
2023-02-16 15:06:43 +00:00
color: #444;
2023-03-20 14:15:24 +00:00
margin: 10px;
2023-02-16 15:06:43 +00:00
background-color: floralwhite;
}
.location small {
font-size: 14px;
2023-03-18 17:37:48 +00:00
opacity: 0.3;
2023-02-16 15:06:43 +00:00
}
.degrees {
font-size: 50px;
position: absolute;
2023-03-20 14:15:24 +00:00
margin: 10px 0 0 10px;
2023-04-04 01:02:13 +00:00
opacity: 0.6;
2023-03-20 14:15:24 +00:00
line-height: 50px;
}
.current-conditions {
margin-top: 20px;
margin-bottom: 20px;
2023-02-16 15:06:43 +00:00
}
.current-temperature {
font-size: 100px;
font-weight: 500;
2023-03-20 14:15:24 +00:00
line-height: 100px;
}
.current-details {
text-align: right;
font-size: 14px;
margin-top: 10px;
opacity: 0.8;
2023-03-18 15:16:24 +00:00
}
2023-03-20 14:15:24 +00:00
.forecast-details {
2023-03-18 15:16:24 +00:00
}
2023-03-20 14:15:24 +00:00
.forecast-details .day-name {
font-size: 17px;
opacity: 0.4;
}
.forecast-details .day-name:not(:first-of-type) {
margin-top: 15px;
}
.forecast-details .day-summary {
2023-03-18 15:16:24 +00:00
font-size: 30px;
2023-03-20 14:15:24 +00:00
line-height: 30px;
margin-bottom: 10px;
2023-03-18 15:16:24 +00:00
}
2023-03-20 14:15:24 +00:00
.forecast-details .day-summary .col:last-of-type {
2023-03-18 17:30:55 +00:00
text-align: right;
}
2023-03-20 14:15:24 +00:00
.forecast-details .day-detail {
2023-03-18 15:16:24 +00:00
font-size: 13px;
2023-03-20 14:15:24 +00:00
opacity: 0.7;
2023-03-18 15:16:24 +00:00
}
2023-03-18 17:30:55 +00:00
2023-04-04 01:02:13 +00:00
.forecast-details .detail-time {
opacity: 0.4;
}
2023-03-20 14:15:24 +00:00
.forecast-details .day-detail .col:last-of-type {
2023-03-18 17:30:55 +00:00
text-align: right;
font-weight: bold;
}