diff options
Diffstat (limited to 'res/css/partials/buttons.scss')
| -rw-r--r-- | res/css/partials/buttons.scss | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/res/css/partials/buttons.scss b/res/css/partials/buttons.scss index e69de29b..379157c4 100644 --- a/res/css/partials/buttons.scss +++ b/res/css/partials/buttons.scss @@ -0,0 +1,24 @@ +.btn-regular { + cursor: pointer; + background-color: white; + font-family: $base-font-family; + font-size: $h4-size; + color: $blue; + padding: $one-baseline $two-baselines $one-baseline $two-baselines; + margin-right: 6px; + border-radius: 4px; + border: none; +} + +.btn-regular:hover { + color: $dark-cyan; + border-color: $dark-cyan; +} + +.btn-regular:focus { + outline: none; +} + +.btn-regular-outline { + border: 1px solid $blue; +}
\ No newline at end of file |
