Newer
Older
@import "../helpers/mixins";
@import "../helpers/variables";
@import "../helpers/functions";
//
// Front Page
// --------------------------------------------------
//## Menu Cards.
.menu-card-container {
display: flex;
padding: 15px 30px 15px 0;
}
.menu-card {
background: $brand-lgray;
flex: 1;
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
position: relative;
h2 {
background: $gray-menu-card;
padding: 10px 15px;
margin: 0 !important;
font-size: 18px;
color: $gray-6;
}
.navbar-nav > li {
float: none;
}
.navbar-nav > li > a {
padding: 7px 15px;
color: $brand-gray;
&:hover, &:focus {
text-decoration: underline !important;
}
}
.more-btn {
position: absolute;
bottom: 0;
right: 0;
padding: 5px 10px;
background: $gray-menu-card;
a {
color: $gray-6;
&:hover {
color: $gray-6;
text-decoration: underline;
}
}
i {
color: $gray-6;
}
}
}