Skip to content

Instantly share code, notes, and snippets.

Created March 6, 2015 06:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/1a40454674d832588bd8 to your computer and use it in GitHub Desktop.
Save anonymous/1a40454674d832588bd8 to your computer and use it in GitHub Desktop.
emLmXz
<div class="heading">
</div>
<div class="rest">
<div class="side">
<div class="sidemenu">
<div class="1 menu">
<a href="admin_dashboard.php" class="astext">Profile</a>
</div> <!--End of menu1 -->
<div class="2 menu">
<a href="clients.php" class="astext">Clients</a>
</div> <!--End of menu 2-->
<div class="3 menu">
<a href="employees.php" class="astext">Employees</a>
</div> <!--End of menu 3-->
<div class="menu 4">
<a href="admin_file_view.php" class="astext">Documents</a>
</div> <!--End of menu 4-->
</div> <!--End of side menu -->
</div> <!--End of side div -->
<hr>
</div>
<!-- End of heading div -->
<div class="content">
</div> <!--End of content -->
<!--End of rest div -->
.heading{
width: 100%;
float:left;
margin-top:0px;
background:yellow;
height:125px;
border: 1px solid #f9f2f2;
}
.rest {
height: 685px;
background: -o-linear-gradient(bottom, #e5e3e3 5%, #ffffff 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #e5e3e3), color-stop(1, #ffffff));
background: -moz-linear-gradient(center top, #e5e3e3 5%, #ffffff 100%);
filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#e5e3e3", endColorstr="#ffffff");
background: -o-linear-gradient(top, #e5e3e3, ffffff);
background-color: #e5e3e3;
border: 1px solid #f9f2f2;
border-width: 0px 0px 0px 0px;
border-radius: 0px 0px 10px 10px;
text-align: left;
padding: 0px 7px;
}
.sidemenu {
float: left;
height: 250px;
width: 150px;
border: 1px solid #f9f2f2;
border-radius: 10px;
background: red;
}
.content {
border-left: thick solid #f9f2f2;
}
hr {
margin: 0;
margin-left:170px;
width: 1px;
height: 685px;
border:0;
background: #fff;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment