blob: 541d15e9b7bffe110e3f78faaa0a1036a1114600 [file] [log] [blame]
beccabroek44da4712019-03-20 13:24:23 -05001button,
2.button,
3.submit {
Michael Davis19475752017-02-23 18:30:23 -06004 font-size: 1em;
Michael Davis51946552017-05-01 10:30:38 -05005 @include fontFamilyBold;
Michael Davis19475752017-02-23 18:30:23 -06006 text-transform: none;
7 border-radius: 3px;
beccabroek44da4712019-03-20 13:24:23 -05008 padding: 0.5rem 2rem 0.5rem;
Michael Davis19475752017-02-23 18:30:23 -06009 height: auto;
Michael Davisc5626182017-03-10 15:48:05 -060010 border: 0;
Michael Davis3a0d4712017-03-27 14:01:34 -050011 overflow: hidden;
Michael Davis19475752017-02-23 18:30:23 -060012 &:hover {
13 cursor: pointer;
14 }
Iftekharul Islam8947e702017-07-27 10:28:07 -050015 &.disabled {
beccabroek44da4712019-03-20 13:24:23 -050016 pointer-events: none;
Michael Davis0f03ad12017-02-27 16:54:18 -060017 color: $btn__disabled-txt;
beccabroek44da4712019-03-20 13:24:23 -050018 background-color: $btn__disabled-bg;
19 border-color: $btn__disabled-bg;
20 border-style: solid;
21 border-width: 2px;
Michael Davis19475752017-02-23 18:30:23 -060022 &:hover {
23 cursor: default;
24 background: transparent;
Iftekharul Islam8947e702017-07-27 10:28:07 -050025 text-decoration: none;
Michael Davis19475752017-02-23 18:30:23 -060026 }
27 }
28}
29
Michael Davisc96980f2017-06-19 11:47:36 -050030.btn-primary {
Michael Davis19475752017-02-23 18:30:23 -060031 color: $primebtn__text;
32 background: $primebtn__bg;
Michael Davis51946552017-05-01 10:30:38 -050033 min-height: 40px;
Michael Davis0f03ad12017-02-27 16:54:18 -060034 &:hover {
Michael Davis5d014692017-03-02 13:37:40 -060035 background: lighten($primebtn__bg, 8%);
Michael Davis0f03ad12017-02-27 16:54:18 -060036 @include fastTransition-all;
37 }
38 &.disabled {
dixsie565efda2019-04-16 13:30:30 -050039 background: $primebtn__disabled-bg;
40 color: $primebtn__disabled-txt;
Michael Davis0f03ad12017-02-27 16:54:18 -060041 @include fastTransition-all;
42 &:hover {
43 cursor: default;
44 }
45 }
beccabroek44da4712019-03-20 13:24:23 -050046 i {
47 //button symbol
Michael Davisc5626182017-03-10 15:48:05 -060048 font-style: normal;
49 text-transform: none;
50 font-size: 1.5em;
51 transform: rotate(80deg);
52 display: inline-block;
53 }
beccabroek44da4712019-03-20 13:24:23 -050054 img {
Michael Davisc5626182017-03-10 15:48:05 -060055 width: 18px;
56 height: 18px;
57 display: inline-block;
58 }
Michael Davis19475752017-02-23 18:30:23 -060059}
60.btn-secondary {
61 color: $secbtn__text;
Iftekharul Islam4390b022017-06-05 09:44:50 -050062 background: transparent;
Michael Davis19475752017-02-23 18:30:23 -060063 border: 2px solid $secbtn__border;
Michael Davis51946552017-05-01 10:30:38 -050064 min-height: 40px;
Michael Davis19475752017-02-23 18:30:23 -060065 &:hover {
beccabroekf6cdacf2019-03-11 13:47:00 -050066 color: $secbtn__text;
Michael Davis19475752017-02-23 18:30:23 -060067 cursor: pointer;
68 background: $secbtn__bg;
Michael Davis0f03ad12017-02-27 16:54:18 -060069 @include fastTransition-all;
70 }
71 &.disabled {
beccabroek44da4712019-03-20 13:24:23 -050072 pointer-events: none;
73 color: $btn__disabled-txt;
74 background-color: $btn__disabled-bg;
75 border-color: $btn__disabled-bg;
76 border-style: solid;
77 border-width: 2px;
Michael Davis0f03ad12017-02-27 16:54:18 -060078 &:hover {
79 background: $btn__disabled-bg;
80 }
Michael Davis19475752017-02-23 18:30:23 -060081 }
beccabroek44da4712019-03-20 13:24:23 -050082 i {
83 // button symbol
Michael Davisc5626182017-03-10 15:48:05 -060084 font-style: normal;
85 font-weight: 400;
86 text-transform: none;
87 font-size: 1.5em;
88 transform: rotate(80deg) translate(-2px);
89 display: inline-block;
90 vertical-align: middle;
91 }
beccabroek44da4712019-03-20 13:24:23 -050092 img {
Michael Davisc5626182017-03-10 15:48:05 -060093 width: 18px;
94 height: 18px;
95 display: inline-block;
beccabroek44da4712019-03-20 13:24:23 -050096 margin-right: 0.5em;
Michael Davisc5626182017-03-10 15:48:05 -060097 margin-top: -3px;
98 }
Michael Davis19475752017-02-23 18:30:23 -060099}
Michael Davis51946552017-05-01 10:30:38 -0500100
101.btn-pop-out {
102 position: relative;
103 padding: 0 0 1em 2em;
104 color: $black;
105 &:hover {
106 text-decoration: underline;
107 }
108 &:before {
beccabroek44da4712019-03-20 13:24:23 -0500109 content: "";
Michael Davis51946552017-05-01 10:30:38 -0500110 position: absolute;
111 left: 0;
Michael Davisf0504852017-07-27 15:42:39 -0500112 top: 0px;
Michael Davis51946552017-05-01 10:30:38 -0500113 width: 25px;
114 height: 20px;
115 display: inline-block;
116 border: 1px solid $black;
117 border-top: 4px solid $black;
118 }
119 &:after {
beccabroek44da4712019-03-20 13:24:23 -0500120 content: "\2794";
Michael Davis51946552017-05-01 10:30:38 -0500121 position: absolute;
122 transform: rotate(-45deg);
beccabroek44da4712019-03-20 13:24:23 -0500123 font-size: 0.9em;
Michael Davis51946552017-05-01 10:30:38 -0500124 font-weight: 700;
125 vertical-align: middle;
126 display: inline-block;
127 left: 11px;
Iftekharul Islamdb28a382017-11-02 13:16:17 -0500128 top: 0px;
Michael Davis51946552017-05-01 10:30:38 -0500129 }
beccabroek44da4712019-03-20 13:24:23 -0500130}