﻿@import '../default.less';
@import '../mixins.less';
//DON'T ADD IMPORTS, ABOVE ARE TO MAKE INTELLISENSE WORK

ul.tabs
{
	list-style-type: none;
	padding: 0;
	margin-top: 0;

	li
	{
		display: inline;
		margin-right: 2em;
		color: #222;
		cursor: pointer;

		a
		{
			text-decoration: none;
			font-family: @title-font;
			font-weight: bold;
			color: inherit;

			&.active
			{
				border-bottom: 2px solid @accent-color;
			}
		}
	}
}
