/*
	Responsive
*/
@media(orientation:portrait) {
	/* yazılan kodlar cihaz dik ise çalışacak */
}
@media(orientation:landscape) {
	/* yazılan kodlar cihaz yatay ise çalışacak */
}
/* Cihazlar */
@media screen and (max-width:1920px){
	/* daha da geniş ekranlar */
}
@media screen and (max-width:1600px){
	/* daha geniş ekranlar */
}
@media screen and (max-width:1440px){
	/* geniş ekranlar */
}
@media screen and (max-width:1280px){
	/* hi-res laptops and desktops */
}
@media screen and (max-width:1200px){
	/* bootstrap daralma */
}
@media screen and (max-width:1024px){
	/* big landscape tablets, laptops, and desktops */
}
@media screen and (max-width:991px){
	/* bootstrap daralma */
}
@media screen and (max-width:960px){
	/* tablet, landscape iPad, lo-res laptops ands desktops */
}
@media screen and (max-width:840px){
	/* not almışım */
}
@media screen and (max-width:767px){
	/* not almışım */
}
@media screen and (max-width:720px){
	/* not almışım */
}
@media screen and (max-width:640px){
	/* portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones */
}
@media screen and (max-width:480px){
	/* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. */
}
@media screen and (max-width:360px){
	/* not almışım */
}
@media screen and (max-width:320px){
	/* smartphones, iPhone, portrait 480x320 phones */
}
