﻿body /*Definiálom a hátteret, a betűméretet és színt*/
{
    font-size: 14px;
    min-height: 600px;
    color: #333333;
    background-image: url('bg-img.png');
    background-size:100% 50%;
    background-repeat:no-repeat;
}
.contents /*elrendezés és méret definíciók*/
{
    width: 800px;
    margin: 30px auto;
    text-align: center;
}
h1 /*Betűméret, szín és árnyék beállítása*/
{
    font-size: 50px;
    font-weight: normal;
    color: rgb(245, 225, 200);
    text-shadow: rgb(200, 95, 65) 2px 2px 0px, rgb(8, 8, 8) 7px 7px 3px;
}
em
{ 
    color: rgb(245, 225, 200);
    font-style: normal;
    text-decoration: none;
}

.menu /*beállítom a menü paramétereit*/
{
    width: 480px;
    margin: 80px auto;
}

.menu ul
{
    padding: 0;
    list-style: none;
    font-size: 16px;
}
.menu li
{
    float: left;
    width: 120px;
    text-align: center;
}
.menu li span
{
    display: block;
    margin-top: 10px;
}
.menu a /*beállítom a menüm színét*/
{
    display: block;
    color: #ffffff;
    text-decoration: none;
}
.menu i /*megadom a menü pizícióját, margóját és a méretét*/
{
    position: relative;
    margin: 0 auto;
    padding: 12px;
    font-size: 30px;
}

/* ICOMOON beállítások kezdete */

@font-face { /*a @font-face definícióm még teljesen általános*/
	font-family: 'html5-ugyesen-com';
	src:url('fonts/html5-ugyesen-com.eot');
	src:url('fonts/html5-ugyesen-com?#iefix') format('embedded-opentype'),
		url('fonts/html5-ugyesen-com.woff') format('woff'),
		url('fonts/html5-ugyesen-com.ttf') format('truetype'),
		url('fonts/html5-ugyesen-com.svg#html5-ugyesen-com') format('svg');
	font-weight: normal;
	font-style: normal;
}

/* Itt történik az érdekes rész, használnom kell a data attributumot, hogy be tudjam illeszteni az ikonokat*/
[data-icon]:before {
	font-family: 'html5-ugyesen-com';
	content: attr(data-icon);
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
}

/* Mivel én ikononként létrehoztam egy class-t ezért szükségem van az egyes elemek kiemelésére */
.icon-html5finder, .icon-html5windows8, .icon-html5exit, .icon-html5home {
	font-family: 'html5-ugyesen-com';
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
}/*tartalom megadása - az icomoon által generált állományból tudhatod, hogy mivel tudod az egyes ikonokat meghivatkozni*/
.icon-html5finder:before {
	content: "\e001";
}
.icon-html5windows8:before {
	content: "\e002";
}
.icon-html5exit:before {
	content: "\e003";
}
.icon-html5home:before {
	content: "\e000";
}
