forked from harvard-lil/alter-space
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nav.scss
88 lines (84 loc) · 1.41 KB
/
nav.scss
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
.nav {
margin: 0 auto;
float: none;
width: 100%;
padding-top: 40px;
padding-bottom: 20px;
position: fixed;
z-index: 999;
> li {
display: table-cell;
float: none;
text-align: center;
font-weight: 700;
}
.btn-link {
margin: 0 auto;
}
&.about {
background-color: $color-navy;
h1 {
color: $color-white;
}
.nav-button-group {
color: $color-white;
}
.btn-nav {
fill: $color-white;
}
}
h1, .h1 {
text-align: center;
margin-top: -20px;
&.page-header {
text-transform: capitalize;
@include media-breakpoint-only(md) {
font-size: 5rem;
}
@include media-breakpoint-down(sm) {
font-size: 4rem;
}
}
}
a {
text-decoration: none;
}
}
.button-label-container {
margin-top: -10px;
}
.nav-button-group {
font-size: 1em;
font-weight: $font-weight-semibold;
.icon {
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
width: 50px;
height: 50px;
}
.btn-nav {
fill: $color-meditate;
&:focus, &:hover {
fill: $color-white;
}
}
}
.app-activity-read,
.app-activity-create,
.app-activity-meditate {
.nav-button-group {
color: $color-navy;
.icon {
fill: $color-navy;
}
}
}
.app-activity-wyrd, .app-activity-focus {
.nav-button-group {
color: $color-white;
.icon {
fill: $color-white;
}
}
}