diff options
| author | Noah Loomans <noahloomans@gmail.com> | 2016-11-09 12:53:15 +0100 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-11-09 12:53:15 +0100 | 
| commit | e9c57f705f5638c65bf3c1e946de766f9b794c6d (patch) | |
| tree | 48e993c4150c47a69979c0d084d53b08ae224028 /public/stylesheets | |
| parent | fe54db967ff79d75f2d793d41aeec677b01c6067 (diff) | |
| parent | 63faeefede9c0cd9a68a5a88b2fedc8ea722cd8f (diff) | |
Merge pull request #1 from nloomans/beta
added print enhancement
Diffstat (limited to 'public/stylesheets')
| -rw-r--r-- | public/stylesheets/print.css | 49 | 
1 files changed, 49 insertions, 0 deletions
diff --git a/public/stylesheets/print.css b/public/stylesheets/print.css new file mode 100644 index 0000000..dd17a42 --- /dev/null +++ b/public/stylesheets/print.css @@ -0,0 +1,49 @@ +#search, #week-selector { +  background-color: inherit; +  box-shadow: inherit; +} + +#search { +  border-bottom: 1px solid black; +} + +#search .top-bar, #week-selector .week-wrapper { +  max-width: inherit; +} + +#search input[type="text"] { +  background-color: inherit; +  color: black; +  font-weight: bold; +} + +#search .fav { +  display: none; +} + +#search #overflow-button { +  display: none; +} + +#week-selector .week-wrapper { +  display: block; +} + +#week-selector input[type='button'] { +  display: none; +} + +#week-selector .current { +  color: black; +  padding: 16px; +  font-size: 1.1em; +  float: right; +} + +#search-space-filler { +  display: none; +} + +.mdl-menu__container { +  display: none !important; +}  | 
