fix: sections width was fixed

This commit is contained in:
miaaurl
2026-06-11 14:24:20 +07:00
parent 0d514efc10
commit ab5feddd3c
2 changed files with 541 additions and 284 deletions
File diff suppressed because it is too large Load Diff
+13 -1
View File
@@ -252,7 +252,19 @@ h1, h2, h3, h4, h5, h6 {
/* Shell layout tambahan */
.nav { background: #003150; padding: 1rem 0; }
.nav .brand { color: white; font-weight: 700; font-size: 1.1rem; letter-spacing: 0.02em; }
.container { max-width: 1100px;}
.container {
max-width: 1100px;
margin-left: auto;
margin-right: auto;
}
/* Make the wrapping container full width so sections can span 100% width */
main#main-content > .container {
max-width: none !important;
width: 100% !important;
padding: 0 !important;
margin: 0 !important;
}
.content {padding: 0 50px;}