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@…>, 2 weeks ago

F4 Finalna Verzija

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