-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The BooksLayout file contain scripts, css and bootstarp library's.
- Loading branch information
Showing
1 changed file
with
65 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,65 @@ | ||
<?php | ||
/** | ||
* Created by PhpStorm. | ||
* User: lenovo | ||
* Date: 07-05-2018 | ||
* Time: 01:18 PM | ||
*/ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet"> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>Book Shop</title> | ||
<script src="https://code.jquery.com/jquery-1.12.4.js"></script> | ||
<!-- Bootstrap CRUD Data Table for Database with Modal Form--> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto|Varela+Round"> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"> | ||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> | ||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> | ||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> | ||
<!----------------------------------------------> | ||
<!-- styles for datatable --> | ||
<link href="https://fonts.googleapis.com/css?family=Raleway:100,600" rel="stylesheet" type="text/css"> | ||
<link href="https://cdn.datatables.net/1.10.16/css/jquery.dataTables.min.css" rel="stylesheet" type="text/css"> | ||
<!-- Script/LIb for datatable --> | ||
<script src="https://cdn.datatables.net/1.10.16/js/jquery.dataTables.min.js"></script> | ||
<!-- <script src="https://cdn.datatables.net/plug-ins/1.10.16/api/sum().js"></script>--> | ||
<!-- CHECKBOX LIB --> | ||
<link type="text/css" href="//gyrocode.github.io/jquery-datatables-checkboxes/1.2.10/css/dataTables.checkboxes.css" | ||
rel="stylesheet"/> | ||
<script type="text/javascript" | ||
src="//gyrocode.github.io/jquery-datatables-checkboxes/1.2.10/js/dataTables.checkboxes.min.js"></script> | ||
</head> | ||
<style> | ||
table.datatable.cell-border tbody th, table.datatable.cell-border tbody td { | ||
border-top: 1px solid #ddd; | ||
border-right: 1px solid #ddd; | ||
} | ||
table.datatable.cell-border tbody tr th:first-child, | ||
table.datatable.cell-border tbody tr td:first-child { | ||
border-left: 1px solid #ddd; | ||
} | ||
table.datatable.cell-border tbody tr:first-child th, | ||
table.datatable.cell-border tbody tr:first-child td { | ||
border-top: none; | ||
} | ||
.brd { | ||
border-radius: 25px; | ||
} | ||
</style> | ||
<body> | ||
</body> | ||
</html> |