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