SAE15_2022/assets/css/about.css

40 lines
569 B
CSS
Raw Permalink 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;
}
2023-01-17 23:57:17 +01:00
#logo2 {
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;
}
2023-01-17 23:57:17 +01:00
#logo2 {
display: flex;
justify-content: center;
}
2023-01-17 23:57:17 +01:00
}
#logo2 {
filter: invert(100%);
}
@media (prefers-color-scheme: light) {
#logo2 {
filter: none;
}
2023-01-12 10:22:37 +01:00
}