diff options
author | Your Name <you@example.com> | 2017-12-30 23:43:05 +0100 |
---|---|---|
committer | Your Name <you@example.com> | 2017-12-30 23:43:05 +0100 |
commit | b95ad0b19399a0958ca72fbba3b78e8dd14a5c3a (patch) | |
tree | 057184c143555c3f6c7b3eb00e77b47566733799 /assets/scss/txt.scss | |
parent | e3d5ebb12d2fb731100ff4b568d049ee59a4de8f (diff) | |
download | lesoiseaux.io-b95ad0b19399a0958ca72fbba3b78e8dd14a5c3a.tar.gz |
Update ps home
Diffstat (limited to 'assets/scss/txt.scss')
-rw-r--r-- | assets/scss/txt.scss | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/assets/scss/txt.scss b/assets/scss/txt.scss index 4bc59a9..a331d7b 100644 --- a/assets/scss/txt.scss +++ b/assets/scss/txt.scss @@ -10,6 +10,36 @@ $bg-txt-on: rgba(187, 205, 150, 1); $bg-vdo: rgba(109, 144, 162, 0.7); $bg-vdo-on: rgba(109, 144, 162, 1); +$a-link: $bg-main; +$a-hover: white; +$a-active: black; +$a-visited: rgba(240,240,242, 0.8); + +a { + text-decoration: none; + + &:link { + color: $a-link; + } + &:hover { + color: $a-hover; + text-decoration: underline; + } + &:active { + color: $a-active; + } + &:visited { + color: $a-visited; + } +} + +span.ps { + background: url(../img/logo-ps.svg) top left / 5rem no-repeat; + opacity: 0.75; + color: transparent; + padding: 0 1rem; +} + h1,h2,h3,h4,h5,h6 { font-family: $serif; font-weight: 600; |