/* bootstrap fixes for xpages
   
   see: https://quintessens.files.wordpress.com/2014/01/bootstrap-in-xpages.pdf
*/

body { padding-top: 60px; padding-bottom: 40px; }

/* margin between icons and text in buttons/ links */
button > i, a > i {
	margin-right: 4px;
}

/* margin between 2 buttons / button links */
a + a, button + button, a + button, button + a {
	margin-left: 5px;	
}



/*reset the left margin that Bootstrap adds to modal dialogs (we're using dijit dialogs and don't want that...)*/
/*.modal {
	margin-left: inherit;	
}*/

/*forms in modals shouldn't have a bottom margin*/
.modal form {
	margin-bottom: 0;
}


/*for this site only: style images in article*/
article img {
	margin: 10px 0;
	padding: 5px;
  border: 1px solid #c4c8cc;
  -moz-box-shadow: 4px 4px 6px #888;
  -moz-border-radius: 4px;
  -webkit-box-shadow: 4px 4px 6px #888;
  -webkit-border-radius: 4px;
}

/*more margin for pre's*/
pre {
	margin: 20px 0;
}

input[type="text"].usr-Name, input[type="text"].usr-Location {
   	font-size: 16px;
    height: 26px;
}