f stylelint

This commit is contained in:
Marley 2023-12-10 14:26:19 -08:00
parent d48ac5ac2b
commit 1e01ec9e41
5 changed files with 5 additions and 9 deletions

View file

@ -7,6 +7,5 @@
<option name="processLiterals" value="false" /> <option name="processLiterals" value="false" />
<option name="processComments" value="true" /> <option name="processComments" value="true" />
</inspection_tool> </inspection_tool>
<inspection_tool class="Stylelint" enabled="true" level="ERROR" enabled_by_default="true" />
</profile> </profile>
</component> </component>

View file

@ -38,7 +38,6 @@
text-decoration-style: dashed; text-decoration-style: dashed;
} }
/*noinspection CssUnresolvedCustomProperty*/
.flow > * + * { .flow > * + * {
margin-block-start: var(--flow-space, 1em); margin-block-start: var(--flow-space, 1em);
} }

View file

@ -5,15 +5,14 @@
justify-content: center; justify-content: center;
} }
/* noinspection Stylelint */
.site { .site {
display: grid; display: grid;
grid-template: grid-template:
'. .' 1.5fr '. .' 1.5fr
'header header' 0.5fr 'header header' 0.5fr
's-nav main' 2.5fr / 1fr 5fr; 's-nav main' 2.5fr / 1fr 5fr;
inline-size: 64rem; width: 1024px;
block-size: 48rem; height: 768px;
padding: var(--space-xs); padding: var(--space-xs);
background: url('/img/theme/baby-its-cold-outside/bg.png'); background: url('/img/theme/baby-its-cold-outside/bg.png');
border: 1px solid hsl(233deg 66% 20%); border: 1px solid hsl(233deg 66% 20%);
@ -22,7 +21,7 @@
header { header {
grid-area: header; grid-area: header;
align-self: end; align-self: end;
padding-inline-end: var(--space-xs); padding-right: var(--space-xs);
padding-bottom: var(--space-2xs); padding-bottom: var(--space-2xs);
text-align: end; text-align: end;
@ -51,7 +50,6 @@
background-color: rgba(255, 255, 255, 0.49); background-color: rgba(255, 255, 255, 0.49);
} }
s
.secondary-nav { .secondary-nav {
grid-area: s-nav; grid-area: s-nav;
padding: var(--space-s); padding: var(--space-s);

View file

@ -6,8 +6,8 @@
* spacers * spacers
*/ */
@import url(https://fonts.bunny.net/css?family=Imprima&display=swap); @import url("https://fonts.bunny.net/css?family=Imprima&display=swap");
@import url(https://fonts.bunny.net/css?family=cedarville-cursive:400); @import url("https://fonts.bunny.net/css?family=cedarville-cursive:400");
:root { :root {
--bg: hsl(204deg 100% 80%); --bg: hsl(204deg 100% 80%);