Fix styles

This commit is contained in:
Quantum 2022-02-13 04:05:02 -05:00
parent c1f6cd408d
commit 2a1a18da13
2 changed files with 6 additions and 4 deletions

View file

@ -11,7 +11,7 @@
<title>French Republican Calendar (a.k.a. French Revolutionary Calendar)</title> <title>French Republican Calendar (a.k.a. French Revolutionary Calendar)</title>
</head> </head>
<body> <body>
<nav class="navbar navbar-expand-lg navbar-light"> <nav class="navbar navbar-expand-md navbar-light">
<div class="container"> <div class="container">
<a class="navbar-brand" href="#">French Republican Calendar</a> <a class="navbar-brand" href="#">French Republican Calendar</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#nav-anchors" <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#nav-anchors"
@ -90,7 +90,7 @@
calendar</a>. This was intended to replace the Catholic Church's calendar of saints, as the French calendar</a>. This was intended to replace the Catholic Church's calendar of saints, as the French
Revolution wanted to reduce the influence of the church. Every day of the year has a unique name Revolution wanted to reduce the influence of the church. Every day of the year has a unique name
associated with the rural economy and these names are supposed to correspond with the season.</p> associated with the rural economy and these names are supposed to correspond with the season.</p>
<p>Every <em>quintidi</em>is named after an animal, every <em>décadi</em> is named after an agricultural <p>Every <em>quintidi</em> is named after an animal, every <em>décadi</em> is named after an agricultural
tool, and the remaining days are named after various plants or produce. The only exception is the winter tool, and the remaining days are named after various plants or produce. The only exception is the winter
month of Nivôse, which has the remaining days named after minerals.</p> month of Nivôse, which has the remaining days named after minerals.</p>
</div> </div>

View file

@ -27,7 +27,8 @@ nav.navbar {
right: 0; right: 0;
.container { .container {
width: $calendar-width; max-width: $calendar-width;
width: 100%;
margin: 0 auto; margin: 0 auto;
padding: 0 1em; padding: 0 1em;
} }
@ -64,7 +65,8 @@ a {
padding: ($spacer * 4 - $font-size-base) / 2; padding: ($spacer * 4 - $font-size-base) / 2;
.container { .container {
width: $calendar-width; width: 100%;
max-width: $calendar-width;
margin: 0 auto; margin: 0 auto;
padding: 0 1em; padding: 0 1em;
} }