/* Definiowanie CSS w całym Systemie */

@media only screen and (max-width: 480px) {

/* Dla telefonów */

.logo
{
	font-size:120% !important;
}

.sortuj
{
	height:100px;
}

}

@media only screen and (max-width: 1024px) {

/* Dla tabletów */

.logo
{
	font-size: 20px;
}

}

@media only screen and (min-width: 1025px) {

/* Dla laptopów i PC */

.logo
{
	font-size: 30px;
}

}

/* Definiowanie tła stron oraz podstawowej czcionki */

body 
{
	background:url(../img/wall.jpg) repeat center; height: auto;
    font-family:'Ubuntu', serif;
	font-size:15px;
	position:relative;
	min-height:100%;
}

/* Definiowanie odnośników do innych stron - bez podkreślenia i rodzaj kursora po najechaniu na odnośnik */

a:link, a:visited, a:hover, a:active
{
	text-decoration:none;
	cursor:pointer;
}

/* Definiowanie kolorów odnośników do innych stron */

a
{
	color:#138d75;
}

a:hover
{
	color:#777;
}

/* Definiowanie stylu przycisków (button) */

.button
{
	background-color:#fff;
	line-height:20px;
	padding:0 5px 2px 5px;
	color:#138d75;
	cursor:pointer;
}

.button:hover
{
	background-color:#333;
	line-height:20px;
	padding:0 5px 2px 5px;
	color:#fff;
	cursor:pointer;
}

/* Definiowanie clear diva */

.clear
{
	clear:both;
}

/* Definiowanie stylu sekcji z logo i z nazwą systemu */

.logo
{
	width:100%;
}

#logo
{
	width:64px;
	float:left;
	display:inline-block;
	text-align:right;
}

#tytul
{
	width:auto;
	float:left;
	display:inline-block;
}

/* Definiowanie stylu strony logowania i rejestracji */

.rejestracja 
{
	width:90%;
	margin:5px 5%;
	line-height:21px;
	color:#333;
	text-align:center;
}

/* Definiowanie stylu sekcji sortowania wg daty i wg autorów wpisów */

.sortuj
{
	display:flex;
	width:100%;
	height:25px;
}

.sort
{
	background-color:#fff;
	padding:0 5px 0 5px;
	color:#138d75;
	cursor:pointer;
}

.sort:hover
{
	background-color:#333;
	padding:0 5px 0 5px;
	color:#fff;
	cursor:pointer;
}

/* Definiowanie stylu box do wprowadzania tekstu */

.textarea

{
	width:400px;
	height:100px;
	margin:auto;
	resize:none;
}

.wpisuj
{
	width:100%;
	margin:25px 0;
	color:#333;
	text-align:center;
}

/* Definiowanie stylu dla box z regulaminem */

.regulamin
{
	width:30%;
	height:100px;
	margin:20px 35%;
	overflow:auto;
}

/* Definiowanie stylu dla box do wysyłania treści */

.dodaj 
{
	width:90%;
	margin:5px 5%;
	line-height:21px;
	color:#333;
	text-align:center;
}

/* Definiowanie stylu błędów */

.blad
{
	color:red;
}

