aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/type.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/styles/type.scss')
-rw-r--r--src/styles/type.scss7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/styles/type.scss b/src/styles/type.scss
index 135d32da0..636b8fd36 100644
--- a/src/styles/type.scss
+++ b/src/styles/type.scss
@@ -33,13 +33,15 @@ p {
33 33
34strong { font-weight: bold; } 34strong { font-weight: bold; }
35 35
36a { 36a, button {
37 color: $theme-text-color; 37 color: $theme-text-color;
38 text-decoration: none; 38 text-decoration: none;
39 39
40 &.button { 40 &.button {
41 background: none; 41 background: none;
42 border: 2px solid $theme-brand-primary; 42 border-width: 2px;
43 border-style: solid;
44 border-color: $theme-brand-primary;
43 border-radius: 3px; 45 border-radius: 3px;
44 color: $theme-brand-primary; 46 color: $theme-brand-primary;
45 display: inline-block; 47 display: inline-block;
@@ -47,6 +49,7 @@ a {
47 position: relative; 49 position: relative;
48 text-align: center; 50 text-align: center;
49 transition: background .5s, color .5s; 51 transition: background .5s, color .5s;
52 cursor: pointer;
50 53
51 &:hover { 54 &:hover {
52 background: darken($theme-brand-primary, 5%); 55 background: darken($theme-brand-primary, 5%);