mirror of https://github.com/ghostfolio/ghostfolio
committed by
Thomas Kaul
9 changed files with 71 additions and 52 deletions
@ -1,5 +1,17 @@ |
|||
@import '../shared/resource-page'; |
|||
|
|||
:host { |
|||
@include resource-page; |
|||
color: rgb(var(--dark-primary-text)); |
|||
display: block; |
|||
|
|||
a { |
|||
color: rgba(var(--palette-primary-500), 1); |
|||
font-weight: 500; |
|||
|
|||
&:hover { |
|||
color: rgba(var(--palette-primary-300), 1); |
|||
} |
|||
} |
|||
} |
|||
|
|||
:host-context(.theme-dark) { |
|||
color: rgb(var(--light-primary-text)); |
|||
} |
|||
|
@ -1,5 +1,17 @@ |
|||
@import '../shared/resource-page'; |
|||
|
|||
:host { |
|||
@include resource-page; |
|||
color: rgb(var(--dark-primary-text)); |
|||
display: block; |
|||
|
|||
a { |
|||
color: rgba(var(--palette-primary-500), 1); |
|||
font-weight: 500; |
|||
|
|||
&:hover { |
|||
color: rgba(var(--palette-primary-300), 1); |
|||
} |
|||
} |
|||
} |
|||
|
|||
:host-context(.theme-dark) { |
|||
color: rgb(var(--light-primary-text)); |
|||
} |
|||
|
@ -1,5 +1,17 @@ |
|||
@import '../shared/resource-page'; |
|||
|
|||
:host { |
|||
@include resource-page; |
|||
color: rgb(var(--dark-primary-text)); |
|||
display: block; |
|||
|
|||
a { |
|||
color: rgba(var(--palette-primary-500), 1); |
|||
font-weight: 500; |
|||
|
|||
&:hover { |
|||
color: rgba(var(--palette-primary-300), 1); |
|||
} |
|||
} |
|||
} |
|||
|
|||
:host-context(.theme-dark) { |
|||
color: rgb(var(--light-primary-text)); |
|||
} |
|||
|
@ -1,25 +0,0 @@ |
|||
@mixin resource-page { |
|||
display: block; |
|||
padding: 1rem; |
|||
color: rgb(var(--dark-primary-text)); |
|||
|
|||
.container { |
|||
max-width: 800px; |
|||
margin: 0 auto; |
|||
} |
|||
|
|||
a { |
|||
color: rgba(var(--palette-primary-500), 1); |
|||
font-weight: 500; |
|||
text-decoration: none; |
|||
|
|||
&:hover { |
|||
color: rgba(var(--palette-primary-300), 1); |
|||
text-decoration: underline; |
|||
} |
|||
} |
|||
|
|||
:host-context(.theme-dark) & { |
|||
color: rgb(var(--light-primary-text)); |
|||
} |
|||
} |
Loading…
Reference in new issue