source:
imaps-frontend/src/pages/IMaps/components/Button.css@
0c6b92a
Last change on this file since 0c6b92a was 0c6b92a, checked in by , 5 weeks ago | |
---|---|
|
|
File size: 761 bytes |
Rev | Line | |
---|---|---|
[0c6b92a] | 1 | @import url(https://fonts.googleapis.com/css?family=Exo:500); |
[d565449] | 2 | :root { |
[0c6b92a] | 3 | --primary: #252627; |
[d565449] | 4 | } |
5 | ||
6 | .btn { | |
7 | padding: 8px 20px; | |
[0c6b92a] | 8 | font-family: exo, sans-serif; |
[d565449] | 9 | border-radius: 20px; |
10 | outline: none; | |
11 | border: none; | |
12 | cursor: pointer; | |
13 | } | |
14 | ||
15 | .btn--primary { | |
16 | background-color: var(--primary); | |
[0c6b92a] | 17 | color: #ffffff; |
[d565449] | 18 | border: 1px solid var(--primary); |
19 | } | |
20 | ||
21 | .btn--outline { | |
22 | background-color: transparent; | |
23 | ||
24 | color: #fff; | |
25 | padding: 8px 20px; | |
[0c6b92a] | 26 | /* border: 1px solid var(--primary); */ |
[d565449] | 27 | transition: all 0.3s ease-out; |
28 | } | |
29 | ||
30 | .btn--medium { | |
31 | padding: 8px 20px; | |
[0c6b92a] | 32 | font-size: 22px; |
[d565449] | 33 | } |
34 | ||
35 | .btn--large { | |
36 | padding: 12px 26px; | |
[0c6b92a] | 37 | font-size: 24px; |
[d565449] | 38 | } |
39 | ||
40 | .btn--large:hover, | |
41 | .btn--medium:hover { | |
42 | transition: all 0.3s ease-out; | |
[0c6b92a] | 43 | background: #ffffffc2; |
44 | color: #000000; | |
[d565449] | 45 | transition: 250ms; |
46 | } |
Note:
See TracBrowser
for help on using the repository browser.