Wednesday, 16 September 2015

YET ANOTHER LAYOUT

<html>
<head>
<link href='https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css' rel='stylesheet'/>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js'></script>
<script>
$(document).ready(function(){
  $(".details").click(function(){
    $($(this).nextAll(".box")[0]).slideToggle("slow");
  });
});
  </script>
<style>
.gbd{1px solid #1d9d73}
.gbg{background-color: #1d9d73}
.ft{font-family: "Arial"}
.wt{color: #fff;}
.ft15{font-size: 15px;}
.ft16{font-size: 17px; font-weight: 700;}
.bbd{border: 1px solid #375998;}
.bbg{background-color: #375998;}
.table,  .table-inner{
    border-collapse: collapse;
    width: 100%;  
    text-align: justify;
}
.main-title{
    vertical-align: center;
    text-align: left;
    padding: 5px;
}
.description{
    border: 1px solid #d3d3d3;
    font-weight: 100;
    padding: 5px;
    line-height: 25px;
}
.table-left, .table-right{
    width:50%;
    text-align: left;
    border: 1px solid #d3d3d3;
    color: #375998;
    background-color: #f5f5f5;
    padding: 3px 7px;
}
.details
{
cursor: pointer;
text-align: center;
font-family: arial;
font-weight: 700;
background-color: #375998;
color: #FFF;
padding: 5px;
border-radius: 0px;
width: auto;}
.box
{
border: 1px solid #375998;    
display:none;
}
a.related:link, a.related:visited {
    margin: 5px;
    font-weight: bold;
    background-color: #0099ff;
    text-align: center;
    padding: 4px;
    text-decoration: none;
}
a.related:hover, a.related:active {background-color: #078F62;}
.ft{font-family: "Arial"}
.wt{color: #fff;}
.ft15{font-size: 15px;}
.good{
width: 120px;
color: green}
</style>
</head>
<body>
<!----------------------------------------------------------------------------------------------Table no 1-->
<table class="table ft">
<tbody>
<tr><th class="main-title wt bbd bbg ft17"><i class="fa fa-book"></i> Book Description</th></tr>
<tr><th class="description ft15">
Reserve Bank of India has invited application for the recruitment of 659 posts of Manager, Assistant, and various other posts in a recent job notification:-</th>
<tr><th class="main-title wt bbd bbg ft16"><i class="fa fa-info-circle"></i> Information about this book</th></tr>
</tbody></table>
<!----------------------------------------------------------------------------------------------Table no 2-->
<table class="table-inner ft ft15">
<tbody>
<tr>
    <th class="table-left"><a class="related ft wt ft15" href="#"><i class="fa fa-cloud-download"></i>  Job 1</a></th>
    <th class="table-left"><a class="related ft wt ft15" href="#"><i class="fa fa-cloud-download"></i>  Job 2</a></th>
    <th class="table-left"><a class="related ft wt ft15" href="#"><i class="fa fa-cloud-download"></i>  Job 3</a></th>
</tr>

</tbody></table>
<div class="details">
<i class="fa fa-plus-circle"></i> Read Notification In Details </div>
<div class="box"><table class="table ft">
<tbody>
<span class ="good"><a class="related ft wt ft15" href="#"><i class="fa fa-cloud-download"></i>  Reserve Bank of India</a></span>
<tr><th class="main-title wt ft17 gbd gbg"><i class="fa fa-plus"></i> More Jobs for you</th></tr>
<tr><th class="description ft15">
 has invited application for the recruitment of 659 posts of Manager, Assistant, and various other posts in a recent job notification:-</th>
</tbody></table></div>
</body></html>