Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add media queries for printing the Players table #3

Closed
bobbingwide opened this issue Nov 22, 2016 · 1 comment
Closed

Add media queries for printing the Players table #3

bobbingwide opened this issue Nov 22, 2016 · 1 comment
Assignees

Comments

@bobbingwide
Copy link
Owner

For every event we need an up to date list of the players so that we can

  • check who's entered the birdies competition
  • tick off the players attending the next competition
  • and make other updates - such as attending the Presentation evening

It'd be nice to be able to do this quickly and easily. It probably doesn't matter about the stuff that surrounds the players table.

@bobbingwide
Copy link
Owner Author

bobbingwide commented Jan 4, 2022

Implemented a long time ago in custom.css. See 5f52d24

@media only print {
	div.TAGS_content-info,
	div.footer-widgets,
	footer,
	header,
	img { 
		display: none;
		
	}
	
	table {
		line-height: 1;
	}
	
	.site-inner {
		padding-top: 0;
		position: relative;
		top: 0px;
	}
	
	a {
		text-decoration: none;
	}
	
	body {
		font-size: 0.8em;
	}

	


}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant