summaryrefslogtreecommitdiff
path: root/src/index.css
diff options
context:
space:
mode:
authorJesse Morgan <jesse@jesterpm.net>2018-12-15 18:21:29 -0800
committerJesse Morgan <jesse@jesterpm.net>2018-12-15 18:21:29 -0800
commit1642420990b7ac94af8544cbc1fca8ba2ae44ca2 (patch)
tree64484c77fd884486452d70a87e6f4e9894cd7e73 /src/index.css
parent0e6d30a160e5537817a4c97894caf67d00f3cd55 (diff)
Add contact group link
Diffstat (limited to 'src/index.css')
-rw-r--r--src/index.css35
1 files changed, 34 insertions, 1 deletions
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;
}