modular-avatar/docs~/src/pages/index.module.css

39 lines
623 B
CSS
Raw Normal View History

2022-08-30 16:21:32 -07:00
/**
* CSS files with the .module.css suffix will be treated as CSS modules
* and scoped locally.
*/
.heroBanner {
2022-10-22 12:42:02 -07:00
padding: 1.8rem 0 4rem;
2022-08-30 16:21:32 -07:00
text-align: center;
position: relative;
overflow: hidden;
}
@media screen and (max-width: 996px) {
.heroBanner {
padding: 2rem;
}
}
.buttons {
display: grid;
grid-auto-flow: column;
2022-08-30 16:21:32 -07:00
align-items: center;
justify-content: center;
column-gap: 2rem;
row-gap: 1rem;
2022-08-30 16:21:32 -07:00
}
2022-09-09 18:08:01 -07:00
@media screen and (max-width: 996px) {
.buttons {
grid-auto-flow: row;
}
2022-09-09 18:08:01 -07:00
}
2022-10-22 12:42:02 -07:00
div.logo {
height: 100px;
text-align: center;
display: flex;
justify-content: center;
}