source: imaps-frontend/src/pages/IMaps/components/Button.css@ 79a0317

main
Last change on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 869 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: #ffffffc2;
23
24 color: #252627;
25 padding: 8px 20px;
26 border: 1px solid #252627 ;
27 /* border: 1px solid var(--primary); */
28 transition: all 0.3s ease-out;
29}
30
31.btn--medium {
32 padding: 8px 20px;
33 font-size: 22px;
34}
35
36.btn--large {
37 padding: 12px 26px;
38 font-size: 24px;
39}
40.btn--outline:hover{
41 transition: all 0.3s ease-out;
42 background: #000000;
43 color:#ffffffc2;
44}
45
46.btn--large:hover,
47.btn--medium:hover {
48 transition: all 0.3s ease-out;
49 background: #ffffffc2;
50 color: #000000;
51}
Note: See TracBrowser for help on using the repository browser.