blob: 6509bdcfe1c287b0c9ed8de8b4c10aabd5fdf24b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
// SHARED MIXINS
@mixin btn-transition {
@include transition-property(background-color);
@include transition-duration(300ms);
@include transition-timing-function(ease-out);
}
@mixin tooltip($top: 8px, $left: 40px) {
background: $dark_slate_gray;
color: $white;
position: absolute;
z-index: 2;
left: $left;
top: $top;
font-size: 0.8rem;
padding: 4px 10px;
white-space: nowrap;
@include border-radius(2px);
}
// FORM MIXINS
@mixin check-box {
background-color: $white;
border: 1px solid $light_gray;
padding: 7px;
margin: 3px 0;
cursor: pointer;
display: inline-block;
position: relative;
@include border-radius(2px);
@include appearance(none);
&:focus {
outline: none;
border-color: $medium_dark_grey;
}
&:active, &:checked:active {
}
&:checked {
background-color: $contrast;
border: 1px solid darken($lighter_gray, 10%);
color: $dark_grey;
}
&:checked:after {
content: '\2714';
font-size: 1em;
position: absolute;
bottom: -2px;
left: 1px;
color: $navigation_background;
}
}
@mixin searching($top, $left, $color, $size){
&.searching {
&:after {
font-family: FontAwesome;
content: "\f002";
font-size: $size;
top: $top;
left: $left;
position: absolute;
color: $color;
text-shadow: -1px 0 $contrast, 0 1px $contrast, 1px 0 $contrast, 0 -1px $contrast;
}
}
}
|