Add ticks, crosses and spinners in sign up form
[ndcode_site.git] / css / bootstrap / _custom.scss
1 // Nick
2
3 $footer-link-color: darken(theme-color("success"), 10%);
4 $footer-link-hover-color: darken($footer-link-color, 10%);
5
6 // apply this to svg, see _svg/icon_search.svg
7 .svg-icon {
8   display: inline-block;
9   width: 1em;
10   height: 1em;
11   stroke-width: 0;
12   stroke: currentColor;
13   fill: currentColor;
14   position: relative;
15   //bottom: -.125em;
16 }
17
18 // note: needs to match the bootstrap border spinner
19 .svg-color {
20   width: 32px;
21   height: 32px;
22 }
23
24 // use this to display the pi symbol without horrible blocky look in Sans
25 .serif {
26   font-family: $font-family-serif;
27 }
28
29 // apply this to table to get an icon with vertically centred text next to it
30 .icon-and-text {
31   vertical-align: middle;
32   td {
33     padding: .25em .5em;
34   }
35 }
36
37 .search-results li {
38   margin-bottom: .5em;
39 }
40
41 footer, .footer {
42   padding-top: 35px;
43   padding-bottom: 25px;
44   background-color: $gray-400;
45   a {
46     color: $footer-link-color;
47
48     &:hover,
49     &:focus {
50       color: $footer-link-hover-color;
51       //background-color: $footer-link-hover-bg;
52     }
53   }
54 }