diff options
| author | Dan Allen <dan@opendevise.com> | 2018-02-07 20:41:17 -0700 |
|---|---|---|
| committer | Dan Allen <dan@opendevise.com> | 2018-02-08 16:10:04 -0700 |
| commit | 9853af583cf7e6514e68c22fdc2a1a230e9c140a (patch) | |
| tree | c776e41781f8ac258591273ce5b301de1922fed2 /src/css/base.css | |
| parent | fb4c1919036f19967e1572d1a0352bda7e9a6fe4 (diff) | |
| download | alpine-antora-theme-9853af583cf7e6514e68c22fdc2a1a230e9c140a.tar.bz2 alpine-antora-theme-9853af583cf7e6514e68c22fdc2a1a230e9c140a.tar.xz | |
consolidate link styles
- set text decoration on link globally
- only override text decoration on link where necessary
Diffstat (limited to 'src/css/base.css')
| -rw-r--r-- | src/css/base.css | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/css/base.css b/src/css/base.css index 14ad1fc..3cb8e38 100644 --- a/src/css/base.css +++ b/src/css/base.css @@ -35,6 +35,14 @@ body { margin: 0; } +a { + text-decoration: none; +} + +a:hover { + text-decoration: underline; +} + code, pre { font-family: 'Roboto Mono', monospace; |
