/* Move down content because we have a fixed navbar that is 50px tall */
body {
  	padding-top: 50px;
	font-family: arial, sans-serif;
	font-size: 17px;
}

.page-header-inverse {
margin: 0;
}

p {
	font-size: 17px;
}
strong {
	font-weight: 900;
}

.open {
	text-shadow: 2px 2px 2px #111;
}

footer {
	margin-top: 20px;
}

.color-page-header {
  padding-bottom: 9px;
  margin: 20px 0 20px;
}

.adbox {
	text-align: center;
}

// Mixin itself
.clearfix() {
  &:before,
  &:after {
    content: " ";
    display: table;
  }
  &:after {
    clear: both;
  }
}

// Usage as a mixin
.element {
  .clearfix();
}

.bold {
	font-weight: bold;
}
.code-wrapper {
	padding: 20px 10px;
	border-top: 1px solid #c8c8c8;
	border-right: 1px solid #c8c8c8;
	border-bottom: 1px solid #c8c8c8;
	border-left: 10px solid #c8c8c8;
	background: #f5f5f5;
	border-radius: 5px;
}
code {
	font-family: Courier;
	color: black;
	background: #f5f5f5;
}

.download {
	padding: 20px;
	border-top: 1px solid #a2ffd0;
	border-right: 1px solid #a2ffd0;
	border-bottom: 1px solid #a2ffd0;
	border-left: 10px solid #00ff7f;
	margin-left: 20px;
	background: #e7fff3;
	border-radius: 5px;
}

.tip {
	background: #fffbe7;
	border-left: 10px solid gold;
	padding: 20px;
	margin: 20px auto;
	border-radius: 5px;
}

.blue-box {
	background: #edf1fc;
	border-left: 10px solid #4169e1;
	padding: 20px;
	margin: 20px auto;
	border-radius: 5px;
}

.warning {
	background: #ffe7e7;
	border-left: 10px solid #ff0000;
	padding: 20px;
	margin: 20px auto;
	border-radius: 5px;
}

.disclosure {
	margin:0;
	padding:0;
	color: #ccc;
	font-family: Helvetica, Arial, sans-serif;
	text-align:center;
}

.code-heading {
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Roboto', sans-serif;
}

.page-header-inverse {
  border-bottom: 0;
}

.page-header-inverse h1 {
  color: #fff;
  opacity: 0.75;
}

.red {
	color: red;
}
.blue {
	color: blue;
}
.brown {
	color: brown;
}
.navy {
	color: navy;
}
.green {
	color: green;
}
.pink {
	color: DeepPink;
}
.purple {
	color: purple;
}

.bg-gray {
	background: #262626;
}

.bg-blue {
	background: #000033;
}

.bg-site {
	background-color: #fff;
}

.bg-black {
	background-color: black;
}

.bg-white {
	background: #fff;
}

.bg-light: {
	background: #e5e5e5;
}

.no-radius {
	border-radius: 0;
}

.transparent {
	opacity: 0.75;
}

.footer {
	padding: 10px 0 0;
}

.text-white {
	color: #fff;
}
.text-black {
	color: #000;
}

