forecast/styles/Home.module.css
2021-09-22 17:43:25 +03:00

28 lines
552 B
CSS

.wrapper {
max-width: 1200px;
text-align: center;
background: rgba(255, 255, 255, 0.95);
box-shadow: 0 8px 32px 0 rgba(83, 89, 179, 0.37);
backdrop-filter: blur(3px);
-webkit-backdrop-filter: blur(3px);
border-radius: 30px;
display: grid;
grid-template-columns: 1fr 2fr;
}
@media only screen and (max-width: 950px) {
.wrapper {
display: grid;
grid-template-columns: 1fr;
max-width: 600px;
margin: 20px auto;
}
}
@media only screen and (max-width: 600px) {
.wrapper {
margin: 0;
border-radius: 0;
}
}