Skip to content

Commit 455b3e0

Browse files
committed
added some print styles for schedule
added schedule to menu
1 parent 6dc0a9c commit 455b3e0

File tree

6 files changed

+35
-1
lines changed

6 files changed

+35
-1
lines changed

public/css/print.css

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/css/print.css.map

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/css/print.scss

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
header.site-header {
2+
display: none;
3+
}
4+
5+
a[href]:after {
6+
content: none !important;
7+
}
8+
9+
.heart.unchecked {
10+
display: none;
11+
}

public/css/style.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/css/style.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -608,6 +608,8 @@ hr {
608608
}
609609
}
610610

611+
612+
611613
.btn-toggle {
612614
&.closed .fa-minus {
613615
display: none;

views/partials/header.ejs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ bodyClass = bodyClass || [];
2222
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
2323

2424
<link rel="stylesheet" href="/css/style.css"/>
25+
<link rel="stylesheet" href="/css/print.css" media="print"/>
2526

2627
<link rel="apple-touch-icon" sizes="57x57" href="/icons/apple-touch-icon-57x57.png">
2728
<link rel="apple-touch-icon" sizes="60x60" href="/icons/apple-touch-icon-60x60.png">
@@ -87,5 +88,8 @@ bodyClass = bodyClass || [];
8788
<li class="nav-item" data-section-id="location">
8889
<a class="nav-link" href="/#location"><span>Location</span></a>
8990
</li>
91+
<li class="nav-item">
92+
<a class="nav-link" href="/schedule"><span>Schedule</span></a>
93+
</li>
9094
</ul>
9195
</header>

0 commit comments

Comments
 (0)