blob: 45b910a532629d4664e38ba559b45ac6db0a7d45 [file] [log] [blame]
Michael Davisaeedf9e2017-04-06 14:35:56 -05001//Export button
2.btn-export {
3 text-transform: capitalize;
4 color: $black;
5 font-size: .9em;
6 font-weight: 700;
7 position: relative;
8 padding: 0 0 1em 2em;
9 margin-right: .6em;
10 &:hover {
11 text-decoration: underline;
12 }
13}
14.btn-export {
15 margin-top: 7px;
16}
17.btn-export:before {
18 content: '\21E5';
19 position: absolute;
20 font-size: 1.7em;
21 vertical-align: middle;
22 transform: rotate(90deg);
23 display: inline-block;
24 left: 2px;
25 top: -5px;
26}