Skip to content

Instantly share code, notes, and snippets.

View jamesnotjim's full-sized avatar

James Martin jamesnotjim

View GitHub Profile
@jamesnotjim
jamesnotjim / VimeoFashionVictim.css
Last active August 22, 2016 15:46
Some CSS to improve the look of the Vimeo Fashion Victim portfolio template
@import 'https://fonts.googleapis.com/css?family=Open+Sans';
h1 a, h2.video_title, p.first {
font-family: 'Open Sans', sans-serif;
text-transform: capitalize;
font-style: normal;
}
@jamesnotjim
jamesnotjim / maxwidth.css
Created August 19, 2016 15:58
SharePoint Max-Width
<style type="text/css">
#contentRow {
max-width: 1400px !important;
}
</style>
@jamesnotjim
jamesnotjim / hidequicklaunch.css
Last active December 1, 2016 22:20
Hides the Quick Launch on a SharePoint 2013 or O365 Team Site or Blog site
<style type="text/css">
#sideNavBox {
display: none;
}
#contentBox {
margin-left: 36px;
margin-right: 36px;
}
.ms-fullscreenmode #contentBox
{