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

41 lines
649 B
CSS
Raw Normal View History

2023-02-09 02:30:14 +00:00
html {
2023-02-16 15:06:43 +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 {
box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}
html {
position: relative;
min-height: 100%;
}
body {
2023-02-10 03:33:02 +00:00
font-family: 'Montserrat', sans-serif;
2023-02-16 15:06:43 +00:00
color: #444;
margin:40px;
background-color: floralwhite;
}
.location small {
font-size: 14px;
}
.degrees {
font-size: 50px;
position: absolute;
margin: 20px 0 0 10px;
opacity: .6;
}
.current-temperature {
font-size: 100px;
font-weight: 500;
2023-02-09 02:30:14 +00:00
}