@import 'variables';
@import 'mixins';

html {
	width: 100%;
	height: 100%;
}

body {
    color: $liDark;
    font: 300 15px/1.5 sans-serif;
    background: none;
}

* {
	margin: 0;
	padding: 0;
	border: 0;
}

%reset-block {
	display: block;
	background: none;
	@include box_sizing( border-box );

}

%font-weight { font-weight: 300; }

h1 {
	font-size: 25px;
	@extend %font-weight;
	@extend %reset-block;
}

h2 {
	font-size: 22px;
	@extend %font-weight;
	@extend %reset-block;
}

h3 {
	font-size: 20px;
	@extend %font-weight;
	@extend %reset-block;
}

h4 {
	font-size: 17px;
	@extend %font-weight;
	@extend %reset-block;
}

h5 {
	font-size: 15px;
	@extend %font-weight;
	@extend %reset-block;
}

h6 {
	font-size: 13px;
	@extend %font-weight;
	@extend %reset-block;
}

%inline-block{
	display: inline-block;
	vertical-align: middle;
}


%outshadow {
	outline: 0;
	@include box_shadow( none );
}

a {
	font-weight: 500;
	color: $liDark;
	@extend %outshadow;
	@extend %inline-block;

	&, &:focus, &:active { text-decoration: none; }

	&:hover{ text-decoration: underline; }

}

button, input, select, textarea {
	@extend %outshadow;
	@extend %inline-block;
	@include box_sizing( border-box );

}

button:focus, input:focus,
button:active, input:active { @extend %outshadow; }

ul, li, ol, label {
	list-style: none;
	@extend %reset-block;
}

img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
	max-height: 100%;
}

iframe {
	display: block;
	margin: 0 auto;
	width: 100%;
	height: auto;
	min-height: 200px;
}

svg {
	display: block;
	margin: 0 auto;
	max-width: 100%;
	max-height: 100%;
	min-height: 20px;
	min-width: 20px;
	fill: currentColor;
}

div, form, figure, main, nav, picture,
article, p, pre, section, aside, blockquote,
cite, caption, footer, header, figcaption, hr, title { @extend %reset-block; }

b, strong, strike, u, ins, del, em, i, sup, sub, span, abbr, code, mark, q, s, small, time { @extend %inline-block; }

.comet-waitwhile > .cico { @include animation( waitWhile 2s linear 0s infinite ); }

@keyframes waitWhile {
    from { @include transform( rotate(0deg) ); } to { @include transform( rotate(360deg) ); }

}
