Menu Responsive Tanpa Javascript

HTML

<div id="menu-footer">
<label for="show-menu" class="show-menu"><img src="http://4.bp.blogspot.com/-F4HH20Hm_MA/VT3mu1w_EQI/AAAAAAAAB_s/JZPlKagd1qw/s1600/menu-icon-kecil.png" width="20" height="20"/></label>
    <input type="checkbox" id="show-menu" role="button"/>
        
		<ul id="menu">
		<li><a href="http://typepedia.blogspot.com/">Home</a></li>
		<li><a href="#">About</a></li>
		<li><a href="http://typepedia.blogspot.com/p/daftar.html">Daftas Isi</a></li>
		<li><a href="http://typepedia.blogspot.com/p/followerin.html">Follower</a></li>
		<li><a href="http://typepedia.blogspot.com/p/pasang-iklan.html">Pasang Iklan</a></li>
            <li><a href="http://typepedia.blogspot.com/p/chat-box.html">Chat Box</a></li>
	</ul>
    </div>
<br/>
<br/><center>
<iframe src="//www.facebook.com/plugins/likebox.php?href=https://www.facebook.com/tapikecom&amp;width&amp;height=62&amp;colorscheme=light&amp;show_faces=false&amp;header=false&amp;stream=false&amp;show_border=false&amp;appId=159468740772399" scrolling="no" frameborder="0" style="border:none; overflow:hidden; height:62px;" allowTransparency="true"></iframe>
<script src="https://apis.google.com/js/platform.js" async="async"></script>
<div class="g-page" data-href="//plus.google.com/+Tapikecom" data-showtagline="false" data-showcoverphoto="false" data-rel="publisher"></center>

CSS

#menu-footer ul {
	list-style-type:none;
	margin:0;
	padding:0;
	position: absolute;
}

/*Create a horizontal list with spacing*/
#menu-footer li {
	display:inline-block;
	float: left;
	margin-right: 1px;
}

/*Style for menu links*/
#menu-footer li a {
	display:block;
	min-width:140px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #fff;
	background: #333;
	text-decoration: none;
}

/*Hover state for top level links*/
#menu-footer li:hover a {
	background: #ff5848;
}

/*Style for dropdown links*/
#menu-footer li:hover ul a {
	background: #333;
	color: #fff;
	height: 40px;
	line-height: 40px;
}

/*Hover state for dropdown links*/
#menu-footer li:hover ul a:hover {
	background: #ff5848;
	color: #fff;
}

/*Hide dropdown links until they are needed*/
#menu-footer li ul {
	display: none;
}

/*Make dropdown links vertical*/
#menu-footer li ul li {
	display: block;
	float: none;
}

/*Prevent text wrapping*/
#menu-footer li ul li a {
	width: auto;
	min-width: 100px;
	padding: 0 20px;
}

/*Display the dropdown on hover*/
#menu-footer ul li a:hover + .hidden, .hidden:hover {
	display: block;
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-decoration: none;
	color: #fff;
	background: #333;
	text-align: center;
    padding:10px 0;
	display: none;height:20px;
}
.show-menu img{float:right;padding-right:10px;}
/*Hide checkbox*/
input[type=checkbox]{
    display: none;
}

/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ #menu{
    display: block;
}


/*Responsive Styles*/

@media screen and (max-width : 760px){
	/*Make dropdown links appear inline*/
	#menu-footer ul {
		position: static;
		display: none;
	}
	/*Create vertical spacing*/
	#menu-footer li {
		margin-bottom: 1px;
	}
	/*Make all menu links full width*/
	#menu-footer ul li, li a {
		width: 100%;
	}
	/*Display 'show...