diff options
author | Ben Sima <ben@bsima.me> | 2020-04-01 10:04:46 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-04-01 10:04:46 -0700 |
commit | f3bf776592a2710627cc232bc040e98427474bd5 (patch) | |
tree | 3ca5ca7d02ed065ed6ced3efdc8ceb7c718353fe /Run/Que/style.css | |
parent | b0307e5cafa71724503684575bcece762b203723 (diff) |
Add basic details for the paid services
Diffstat (limited to 'Run/Que/style.css')
-rw-r--r-- | Run/Que/style.css | 30 |
1 files changed, 26 insertions, 4 deletions
diff --git a/Run/Que/style.css b/Run/Que/style.css index 1933a5d..d005b1a 100644 --- a/Run/Que/style.css +++ b/Run/Que/style.css @@ -23,7 +23,9 @@ @import 'https://fonts.googleapis.com/css?family=Galada:400|Open+Sans:400,300'; /* dark theme */ -@media ( prefers-color-scheme: dark ), ( prefers-color-scheme: no-preference ) { +@media ( prefers-color-scheme: dark ), + ( prefers-color-scheme: no-preference ) +{ body { color: var(--base05); ; background: var(--base00) @@ -32,7 +34,7 @@ header, h1, h2, h3 { color: var(--base0A) } - a:link, a:link button, a:visited, a:visited button + a:link, a:visited { color: var(--base0D) } a:hover @@ -44,16 +46,36 @@ code { color: var(--base0B) } + + hr + { border: 0 + ; height: 1px + ; width: 100% + ; margin: 2rem + ; background-image: linear-gradient( + to right, + /* same as --base0A */ + rgba(186, 139, 175, 0), + rgba(186, 139, 175, 0.75), + rgba(186, 139, 175, 0)) + } } /* light theme */ -@media ( prefers-color-scheme: light) { +@media ( prefers-color-scheme: light) +{ body { background-color: var(--base07) ; color: var(--base00) } + a:link, a:visited + { color: var(--base0D) } + + a:hover + { color: var(--base0C) } + pre { background-color: var(--base06) } @@ -64,7 +86,7 @@ /* structure and layout */ body -{ max-width: 650px +{ max-width: 900px ; margin: 40px auto ; padding: 0 10px ; font: 18px/1.5 |