mirror of
https://github.com/jbowdre/virtuallypotato.git
synced 2024-11-21 22:42:19 +00:00
dark theme colors and rounded corners for notice boxes (#2)
This commit is contained in:
parent
0d96164e9a
commit
512ec574fc
1 changed files with 18 additions and 1 deletions
|
@ -4,6 +4,9 @@ html
|
||||||
--inlineColor: hsl(198, 100%, 24%)
|
--inlineColor: hsl(198, 100%, 24%)
|
||||||
background: hsl(198, 0%, 91%)
|
background: hsl(198, 0%, 91%)
|
||||||
|
|
||||||
|
.notices
|
||||||
|
border-radius: 0.5rem
|
||||||
|
|
||||||
@mixin darkmode
|
@mixin darkmode
|
||||||
|
|
||||||
&[data-mode="dim"]
|
&[data-mode="dim"]
|
||||||
|
@ -15,3 +18,17 @@ html
|
||||||
.post_content
|
.post_content
|
||||||
a
|
a
|
||||||
color: hsl(198, 65%, 57%)
|
color: hsl(198, 65%, 57%)
|
||||||
|
.notices
|
||||||
|
color: var(--light)
|
||||||
|
&.info
|
||||||
|
border-color: hsl(198, 100%, 32%)
|
||||||
|
background: hsl(198, 100%, 24%)
|
||||||
|
&.warning
|
||||||
|
border-color: hsl(9, 92%, 50%)
|
||||||
|
background: hsl(9, 100%, 38%)
|
||||||
|
&.note
|
||||||
|
border-color: hsl(46, 100%, 45%)
|
||||||
|
background: hsl(41, 100%, 36%)
|
||||||
|
&.tip
|
||||||
|
border-color: hsl(93, 85%, 32%)
|
||||||
|
background: hsl(93, 100%, 21%)
|
Loading…
Reference in a new issue