Files
sumup/themes/bootstrap5/static/css/style.css

24 lines
364 B
CSS
Raw Normal View History

2025-11-09 19:57:15 +01:00
.container {
margin: 0 auto;
width: 80%;
}
nav, footer {
background-color: #333;
color: #fff;
text-align: center;
}
nav {
display: flex;
flex-direction: column;
}
nav > a {
flex: 1;
text-align: center;
text-decoration: none;
color: #fff;
}
@media only screen and (min-width: 768px) {
nav { flex-direction: row; }
}