From 1642420990b7ac94af8544cbc1fca8ba2ae44ca2 Mon Sep 17 00:00:00 2001 From: Jesse Morgan Date: Sat, 15 Dec 2018 18:21:29 -0800 Subject: Add contact group link --- src/index.css | 35 ++++++++++++++++++++++++++++++++++- 1 file changed, 34 insertions(+), 1 deletion(-) (limited to 'src/index.css') diff --git a/src/index.css b/src/index.css index b4cc725..136694b 100644 --- a/src/index.css +++ b/src/index.css @@ -1,5 +1,38 @@ body { margin: 0; padding: 0; - font-family: sans-serif; + font-family: futura-pt; +} + +.btn { + -moz-appearance: none; + background-color: rgba(0, 0, 0, 0); + border: solid 2px rgb(112, 112, 112); + border-radius: 3px; + color: rgb(112, 112, 112); + cursor: pointer; + display: inline-block; + font-size: 14px; + font-stretch: 100%; + font-style: normal; + font-weight: 700; + line-height: 14px; + margin: 0; + padding: 14px 35px; + text-align: center; + text-decoration: none; + text-transform: uppercase; + transition-delay: 0s, 0s; + transition-duration: 0.1s, 0.1s; + transition-property: background-color, color; + transition-timing-function: linear, linear; +} + +.btn:hover { + background-color: rgb(112, 112, 112); + color: white; + transition-delay: 0s, 0s; + transition-duration: 0.1s, 0.1s; + transition-property: background-color, color; + transition-timing-function: linear, linear; } -- cgit v1.2.3