@import '../../styles/_colors.scss';

.details-container h2.examples-heading{
	padding-bottom: 0;
	margin-bottom: 0;
}

.examples-list{
	background-color: base-color(sea-blue-lightest);
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	font-size: 16px;
	padding: 0 15px;
	> li {
		margin: 0;
		button {
			cursor: pointer;
			position: relative;
			display: block;
			color: inherit;
			text-decoration: none;
			padding: 15px 0;
			background-color: transparent;
			border: none;
			font-size: inherit;
			font-family: inherit;
			&:hover{
				text-decoration: underline;
			}
		}
		& + li{
			padding-left: 25px;
		}

		&.active{
			button{
				text-decoration: underline;
			}
		}
	}
}

.examples-example{
	padding: 15px 0;
}