SAE15_2022/assets/css/about.css

30 lines
444 B
CSS
Raw Normal View History

2023-01-12 10:22:37 +01:00
@media screen and (min-width: 700px) {
main{
padding-bottom: 2%;
2023-01-12 10:22:37 +01:00
}
.about {
display: grid;
grid-template-columns: 1fr 1fr;
}
#logo{
display: flex;
justify-content: center;
2023-01-12 10:22:37 +01:00
}
}
@media screen and (max-width: 700px) {
main{
2023-01-12 10:22:37 +01:00
padding-bottom: 2%;
}
.about {
display: grid;
}
#logo{
display: flex;
justify-content: center;
}
2023-01-12 10:22:37 +01:00
}