Commit 44b3c2cd by Tobin

Merge branch 'master' of https://gitlab.techware.co.in/tobin/timeOut into tobin

parents 84c73885 103529d1
...@@ -15,18 +15,22 @@ ...@@ -15,18 +15,22 @@
<section class="content"> <section class="content">
<div class="row"> <div class="row">
<div class="col-md-12"> <div class="col-md-12">
<?php if($this->session->flashdata('message')) { <?php if($this->session->flashdata('message')) {
$flashdata = $this->session->flashdata('message'); ?> $flashdata = $this->session->flashdata('message'); ?>
<div class="alert alert-<?= $flashdata['class'] ?>"> <div class="alert alert-<?= $flashdata['class'] ?>">
<button class="close" data-dismiss="alert" type="button">×</button> <button class="close" data-dismiss="alert" type="button">×</button>
<?= $flashdata['message'] ?> <?= $flashdata['message'] ?>
</div> </div>
<?php } ?> <?php } ?>
</div> </div>
<div class="col-xs-12"> </div>
<div class="row">
<div class="col-md-12">
<div class="box box-warning"> <div class="box box-warning">
<div class="box-header with-border"> <div class="box-header with-border">
<div class="col-md-6"><h3 class="box-title">Event List</h3></div> <div class="col-md-6">
<h3 class="box-title">Event List</h3>
</div>
<div class="col-md-6" align="right"> <div class="col-md-6" align="right">
<a class="btn btn-sm btn-primary" href="<?= base_url('Event/addEvent') ?>"> <a class="btn btn-sm btn-primary" href="<?= base_url('Event/addEvent') ?>">
Add New Event Add New Event
...@@ -39,14 +43,14 @@ ...@@ -39,14 +43,14 @@
<thead> <thead>
<tr> <tr>
<th class="hidden">ID</th> <th class="hidden">ID</th>
<th width="100px;">Event Name</th> <th>Event Name</th>
<th width="100px;">Venue</th> <th >Venue</th>
<th width="100px;">Region</th> <th>Region</th>
<th width="100px;">Location</th> <th>Location</th>
<th width="50px;">Status</th> <th>Status</th>
<th width="250px;">Action</th> <th>Action</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<?php <?php
if(!empty($event_data)){ if(!empty($event_data)){
...@@ -70,13 +74,13 @@ ...@@ -70,13 +74,13 @@
<button class="btn btn-sm btn-info" id="viewEventDetails" <button class="btn btn-sm btn-info" id="viewEventDetails"
event_id="<?= encode_param($event->event_id) ?>"> event_id="<?= encode_param($event->event_id) ?>">
<i class="fa fa-fw fa-eye"></i>View <i class="fa fa-fw fa-eye"></i>View
</button> </button>
<a class="btn btn-sm btn-primary" <a class="btn btn-sm btn-primary"
href="<?= base_url('Event/editEvents/'.encode_param($event->event_id))?>"> href="<?= base_url('Event/editEvents/'.encode_param($event->event_id))?>">
<i class="fa fa-fw fa-edit"></i>Edit <i class="fa fa-fw fa-edit"></i>Edit
</a> </a>
<a class="btn btn-sm btn-danger" <a class="btn btn-sm btn-danger"
href="<?= base_url("Event/changeStatus/".encode_param($event->event_id))."/2" ?>" href="<?= base_url("Event/changeStatus/".encode_param($event->event_id))."/2" ?>"
onClick="return doconfirm()"> onClick="return doconfirm()">
<i class="fa fa-fw fa-trash"></i>Delete <i class="fa fa-fw fa-trash"></i>Delete
</a> </a>
...@@ -109,4 +113,4 @@ ...@@ -109,4 +113,4 @@
</div> </div>
</div> </div>
</section> </section>
</div> </div>
\ No newline at end of file
...@@ -7,13 +7,89 @@ ...@@ -7,13 +7,89 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Admin | Log in</title> <title>TimeOut AdminPanel | Log in</title>
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport"> <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<link rel="stylesheet" href="<?= base_url('assets/css/bootstrap.min.css') ?>"> <?php
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css"> $this->load->view('Templates/header-script');
<link rel="stylesheet" href="<?= base_url('assets/css/AdminLTE.min.css') ?>"> ?>
</head> </head>
<body class="hold-transition login-page"> <body class="login_wrapper">
<div class="login_overlay">
<h1 class="">Welcome !</h1>
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="login_left">
<div class="login_logo">
<img src="assets/images/asset_logo.png">
</div>
<div class="login_slider_quotes">
<ul>
<li>
<p>
<strong>"</strong>
Banking is a very treacherous business because<br> you don't realize it is risky until it is too late.
<strong>"</strong>
</p>
<h6>Margrim Nicholas</h6>
</li>
<li>
<p>
<strong>"</strong>
Banking is a very treacherous business because <br>you don't realize it is risky until it is too late.
<strong>"</strong>
</p>
<h6>Marie Lorem</h6>
</li>
<li>
<p>
<strong>"</strong>
Banking is a very treacherous business because <br>you don't realize it is risky until it is too late.
<strong>"</strong>
</p>
<h6>Lewis Adam</h6>
</li>
</ul>
</div>
</div>
</div>
<div class="col-md-6">
<div class="login_right">
<div class="login_container_panel">
<h3>Login</h3>
<?php if(validation_errors()) { ?>
<div class="alert alert-danger">
<?= validation_errors() ?>
</div>
<?php } ?>
<form action="" method="post">
<div class="form-group has-feedback login_row">
<input type="text" class="form-control login_input" name="username" placeholder="Email">
<span class="glyphicon glyphicon-envelope form-control-feedback"></span>
</div>
<div class="form-group has-feedback login_row">
<input type="password" class="form-control login_input" name="password" placeholder="Password">
<span class="glyphicon glyphicon-lock form-control-feedback"></span>
</div>
<div class="login_row">
<button type="submit" class=" login_btn btn btn-primary btn-block btn-flat">Sign In</button>
</div>
</form>
</div>
<div class="clear"></div>
</div>
</div>
</div>
</div>
</div>
</body>
<!-- <body class="hold-transition login-page">
<div class="login-box"> <div class="login-box">
<div class="login-logo"> <div class="login-logo">
<a href="<?= base_url() ?>"><b><?= $settings['title'] ?></b></a> <a href="<?= base_url() ?>"><b><?= $settings['title'] ?></b></a>
...@@ -42,5 +118,9 @@ ...@@ -42,5 +118,9 @@
</form> </form>
</div> </div>
</div> </div>
</body> </body> -->
<?php
$this->load->view('Templates/footer-script');
?>
</html> </html>
...@@ -2,6 +2,9 @@ ...@@ -2,6 +2,9 @@
$settings = getSettings(); $settings = getSettings();
$gKey = $settings['google_api_key']; $gKey = $settings['google_api_key'];
?> ?>
<!-- JAVASCRIPTS-STARTS -->
<script> <script>
base_url = "<?= base_url() ?>"; base_url = "<?= base_url() ?>";
country_flag = '<?= $settings['country_flag'] ?>'; country_flag = '<?= $settings['country_flag'] ?>';
...@@ -19,6 +22,8 @@ ...@@ -19,6 +22,8 @@
<script src="https://cdn.ckeditor.com/4.5.7/standard/ckeditor.js"></script> <script src="https://cdn.ckeditor.com/4.5.7/standard/ckeditor.js"></script>
<script src="<?= base_url('assets/js/bootstrap-datepicker.js') ?>"></script> <script src="<?= base_url('assets/js/bootstrap-datepicker.js') ?>"></script>
<script src="<?= base_url('assets/js/clockpicker.js') ?>" type="text/javascript"></script> <script src="<?= base_url('assets/js/clockpicker.js') ?>" type="text/javascript"></script>
<script src="<?= base_url('assets/js/slick.min.js') ?>" type="text/javascript"></script>
<script src="<?= base_url('assets/js/custom.js') ?>" type="text/javascript"></script>
<script> <script>
jQuery('.clockpicker').clockpicker(); jQuery('.clockpicker').clockpicker();
...@@ -36,27 +41,8 @@ ...@@ -36,27 +41,8 @@
$controllerName = $ci->uri->segment(1); $controllerName = $ci->uri->segment(1);
$actionName = $ci->uri->segment(2); $actionName = $ci->uri->segment(2);
$page = $controllerName . '-' . $actionName; $page = $controllerName . '-' . $actionName;
?>
</script>
// switch ($page) { <!-- JAVASCRIPTS-ENDS -->
//case 'Ride-view_rides': ?> \ No newline at end of file
// jQuery(function () {
// jQuery('.datatable').DataTable({
// scrollY: "300px",
// scrollX: true,
// scrollCollapse: true,
// paging: false,
// fixedColumns: {
// heightMatch: 'none'
// }
// });
// });
<?php //break;
//default : ?>
jQuery(function () {
jQuery('.datatable').DataTable({
"ordering" : jQuery(this).data("ordering"),
"order": [[ 0, "asc" ]]
});
});
<?php //} ?>
</script>
\ No newline at end of file
...@@ -6,10 +6,12 @@ ...@@ -6,10 +6,12 @@
<header class="main-header"> <header class="main-header">
<a href="<?= base_url() ?>" class="logo"> <a href="<?= base_url() ?>" class="logo">
<span class="logo-mini"> <span class="logo-mini">
<img id="fav_icon" src="<?= base_url($settings['fav_icon']) ?>" <img id="fav_icon" src="<?= base_url($settings['fav_icon']) ?>"
onerror="this.src='<?= base_url("assets/images/no_image.png") ?>';" height="50" width="50" /> onerror="this.src='<?= base_url("assets/images/asset_logo.png") ?>';" height="50" width="50" />
</span>
<span class="hidden-xs">
<img src="../assets/images/asset_logo.png">
</span> </span>
<span class="hidden-xs"><?= $settings['title_short']?></span>
</a> </a>
<nav class="navbar navbar-static-top" role="navigation"> <nav class="navbar navbar-static-top" role="navigation">
<a href="#" class="sidebar-toggle" data-toggle="offcanvas" role="button"> <a href="#" class="sidebar-toggle" data-toggle="offcanvas" role="button">
...@@ -19,15 +21,15 @@ ...@@ -19,15 +21,15 @@
<ul class="nav navbar-nav"> <ul class="nav navbar-nav">
<li class="dropdown user user-menu"> <li class="dropdown user user-menu">
<a href="#" class="dropdown-toggle" data-toggle="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">
<img src="<?= base_url($userData->profile_image) ?>" <img src="<?= base_url($userData->profile_image) ?>"
onerror="this.src='<?= base_url("assets/images/user_avatar.jpg") ?>';" onerror="this.src='<?= base_url("assets/images/user_avatar.jpg") ?>';"
class="user-image" alt="User Image"> class="user-image" alt="User Image">
<span class="hidden-xs"><?= $userData->display_name ?></span> <span class="hidden-xs"><?= $userData->display_name ?></span>
</a> </a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li class="user-header"> <li class="user-header">
<img src="<?= base_url($userData->profile_image) ?>" <img src="<?= base_url($userData->profile_image) ?>"
onerror="this.src='<?=base_url("assets/images/user_avatar.jpg")?>';" onerror="this.src='<?=base_url("assets/images/user_avatar.jpg")?>';"
class="img-circle" alt="User Image"> class="img-circle" alt="User Image">
</li> </li>
<li class="user-footer"> <li class="user-footer">
......
...@@ -10,6 +10,8 @@ ...@@ -10,6 +10,8 @@
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport"> <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<!-- CASCADE-STYLE-SHEET-STARTS -->
<link rel="stylesheet" href="<?= base_url('assets/css/bootstrap.min.css') ?>"> <link rel="stylesheet" href="<?= base_url('assets/css/bootstrap.min.css') ?>">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css" rel="stylesheet"> <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css"> <link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
...@@ -21,8 +23,15 @@ ...@@ -21,8 +23,15 @@
<link rel="stylesheet" href="<?= base_url('assets/css/custom-style.css?'.time()) ?>"> <link rel="stylesheet" href="<?= base_url('assets/css/custom-style.css?'.time()) ?>">
<link rel="stylesheet" href="<?= base_url('assets/css/parsley/parsley.css') ?>"> <link rel="stylesheet" href="<?= base_url('assets/css/parsley/parsley.css') ?>">
<link rel="stylesheet" href="<?= base_url('assets/css/bootstrap-datepicker3.css') ?>"> <link rel="stylesheet" href="<?= base_url('assets/css/bootstrap-datepicker3.css') ?>">
<link rel="stylesheet" href="<?= base_url('assets/css/theme.css') ?>">
<link rel="stylesheet" href="<?= base_url('assets/css/custom.css') ?>">
<link rel="stylesheet" href="<?= base_url('assets/css/slick.min.css') ?>" type="text/css" >
<link rel="stylesheet" href="<?= base_url('assets/css/clockpicker.css') ?>" type="text/css" > <link rel="stylesheet" href="<?= base_url('assets/css/clockpicker.css') ?>" type="text/css" >
<!-- CASCADE-STYLE-SHEET-ENDS -->
<!-- JAVASCRIPTS-STARTS -->
<script src="<?= base_url('assets/js/jQuery-2.1.4.min.js') ?>"></script> <script src="<?= base_url('assets/js/jQuery-2.1.4.min.js') ?>"></script>
<script type="text/javascript"> <script type="text/javascript">
......
<aside class="main-sidebar"> <aside class="main-sidebar">
<section class="sidebar"> <section class="sidebar">
<div class="user-panel"> <div class="user-panel">
<div class="pull-left image"> <div class="image">
<img src="<?=base_url($this->session->userdata('profile_pic'))?>" onerror="this.src='<?=base_url("assets/images/user_avatar.jpg")?>'" class="user-image left-sid" alt="User Image"> <img src="<?=base_url($this->session->userdata('profile_pic'))?>" onerror="this.src='<?=base_url("assets/images/user_avatar.jpg")?>'" class="user-image left-sid" alt="User Image">
</div> </div>
<div class="pull-left info"> <div class="info">
<p><?php echo $this->session->userdata('logged_in_admin')['username']; ?></p> <p><?php echo $this->session->userdata('logged_in_admin')['username']; ?></p>
<a href="#"><i class="fa fa-circle text-success"></i> Online</a> <a href="#"><i class="fa fa-circle text-success"></i> Online</a>
</div> </div>
<div class="clear">
</div>
</div> </div>
<ul class="sidebar-menu"> <ul class="sidebar-menu">
<li><a href="<?= base_url('Dashboard') ?>"><i class="fa fa-wrench" aria-hidden="true"> <li><a href="<?= base_url('Dashboard') ?>">
</i><span>Dashboard</span></a> <img src="../assets/images/m1.png" />
<span>Dashboard</span></a>
</li> </li>
<li><a href="<?= base_url('Tag/listTags') ?>"><i class="fa fa-bars" aria-hidden="true"> <li><a href="<?= base_url('Tag/listTags') ?>">
</i><span>Tag Management</span></a> <img src="../assets/images/m2.png" />
<span>Tag Management</span></a>
</li> </li>
<li class="treeview"> <li class="treeview">
<a href="#"> <a href="#">
<i class="fa fa-bars" aria-hidden="true"></i> <img src="../assets/images/m3.png" />
<span>Host Categories</span> <span>Host Categories</span>
<i class="fa fa-angle-left pull-right"></i> <i class="fa fa-angle-left pull-right"></i>
</a> </a>
...@@ -37,15 +42,17 @@ ...@@ -37,15 +42,17 @@
</li> </li>
</ul> </ul>
</li> </li>
<li><a href="<?= base_url('Region/listRegion') ?>"><i class="fa fa-bars" aria-hidden="true"> <li><a href="<?= base_url('Region/listRegion') ?>">
</i><span>Region Management</span></a> <img src="../assets/images/m4.png" />
<span>Region Management</span></a>
</li> </li>
<li><a href="<?= base_url('Category/listCategory') ?>"><i class="fa fa-bars" aria-hidden="true"> <li><a href="<?= base_url('Category/listCategory') ?>">
</i><span>Category Management</span></a> <img src="../assets/images/m5.png" />
<span>Category Management</span></a>
</li> </li>
<li class="treeview"> <li class="treeview">
<a href="#"> <a href="#">
<i class="fa fa-bars" aria-hidden="true"></i> <img src="../assets/images/m6.png" />
<span>Venue Management</span> <span>Venue Management</span>
<i class="fa fa-angle-left pull-right"></i> <i class="fa fa-angle-left pull-right"></i>
</a> </a>
...@@ -66,7 +73,7 @@ ...@@ -66,7 +73,7 @@
</li> </li>
<li class="treeview"> <li class="treeview">
<a href="#"> <a href="#">
<i class="fa fa-bars" aria-hidden="true"></i> <img src="../assets/images/m3.png" />
<span>Event Management</span> <span>Event Management</span>
<i class="fa fa-angle-left pull-right"></i> <i class="fa fa-angle-left pull-right"></i>
</a> </a>
...@@ -133,7 +140,7 @@ ...@@ -133,7 +140,7 @@
</i><span>Booking Details</span></a> </i><span>Booking Details</span></a>
</li> </li>
<li><a href="<?= base_url('Settings') ?>"> <li><a href="<?= base_url('Settings') ?>">
<i class="fa fa-wrench" aria-hidden="true"> <img src="../assets/images/m7.png" />
</i><span>Settings</span></a> </i><span>Settings</span></a>
</li> </li>
<?php } ?> <?php } ?>
......
...@@ -13,9 +13,7 @@ body { ...@@ -13,9 +13,7 @@ body {
min-height: 100% min-height: 100%
} }
a:hover{
background: transparent !important;
}
.layout-boxed html, .layout-boxed html,
.layout-boxed body { .layout-boxed body {
height: 100% height: 100%
...@@ -352,7 +350,7 @@ a:focus { ...@@ -352,7 +350,7 @@ a:focus {
.content-header>h1 { .content-header>h1 {
margin: 0; margin: 0;
font-size: 24px font-size: 35px;
} }
.content-header>h1>small { .content-header>h1>small {
...@@ -1968,7 +1966,7 @@ a:focus { ...@@ -1968,7 +1966,7 @@ a:focus {
.box-header>.ion, .box-header>.ion,
.box-header .box-title { .box-header .box-title {
display: inline-block; display: inline-block;
font-size: 18px; font-size: 26px;
margin: 0; margin: 0;
line-height: 1 line-height: 1
} }
......
/*
Site Name: TimeOut Admin
URI: http:
Description: This is the theme css for TimeOut Admin
Version: 1.0
Author: Amal-Techware Solution
Author URI:
Tags:
---------------------------
THEME STYLES
---------------------------
TABLE OF CONTENTS
---------------------------
01. LOGIN-PAGE
02. SIDE-MENU
*/
/*-----------------
01. LOGIN-PAGE
-----------------*/
.login_overlay{
background: rgba(0,0,0,0.8);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
position: relative;
height: 100vh;
}
.login_overlay h1{
text-align: center;
color: #fff;
font-size: 58px;
font-weight:300;
font-family: sinhala;
padding-top: 5%;
padding-bottom: 5%;
margin:0px;
}
.login_left{
border-right:1px solid #94d6f5;
padding: 10px;
padding-top: 20px;
padding-bottom: 20px;
}
.login_slider_quotes{
padding-top: 60px;
}
.login_slider_quotes ul{
padding: 0px;
margin:0px;
}
.login_slider_quotes ul li{
padding: 0px;
margin:0px;
list-style: none;
}
.login_slider_quotes ul li p{
padding: 0px;
margin:0px;
color:#fff;
font-size:20px;
font-weight: 300;
font-family: 'Roboto', sans-serif;
padding-bottom: 20px;
line-height: 30px;
}
.login_slider_quotes ul li h6{
padding: 0px;
margin:0px;
color:#fff;
font-family: 'Roboto', sans-serif;
font-weight: 500;
}
.login_slider_quotes .slick-dots{
width: 100%;
padding-top: 25px;
}
.login_slider_quotes .slick-dots li{
width: 10px;
height:10px;
border-radius: 50%;
background: #000;
display: inline-block;
margin-right: 10px;
cursor: pointer;
}
.login_slider_quotes .slick-dots li button{
width: 10px;
height:10px;
border-radius: 50%;
background: #000;
content: none;
display: none;
}
.login_slider_quotes .slick-dots .slick-active{
width: 10px;
height:10px;
border-radius: 50%;
background: #fff !important;
}
.login_logo{
}
.login_logo img{
width: 120px;
}
.login_right{
width: 100%;
}
.login_container_panel{
background: #ffffff;
border-radius:0px;
width:400px;
float: right;
padding: 30px;
padding-left: 30px;
padding-right: 30px;
box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);
}
.login_container_panel h3{
text-align: center;
color:#000;
font-family: sinhala;
font-weight: 600;
margin:0px;
padding:0px;
font-size:45px;
padding-top: 10px;
}
.login_container_panel hr{
width: 25px;
margin:0 auto;
height:0px;
border:2px solid #000;
border-radius:20px;
margin-top:10px;
margin-bottom:30px;
}
.login_row{
width: 100%;
margin-bottom: 10px;
margin-top:15px;
}
.login_row .form-control-feedback{
top:7px;
}
.login_input{
width: 100%;
height: 50px;
background: #ececec;
border-radius:0px;
border:none;
padding-left:20px;
font-size: 20px;
}
.login_input:focus{
outline: none;
}
.login_input::placeholder{
color:#c3c3c3;
}
.login_btn{
width: 100%;
height:50px;
color: #fff;
background: #000;
border-radius: 0px;
position: relative;
font-weight:400;
padding: 3px;
border:none;
font-size: 30px;
font-family: sinhala;
}
.login_btn:hover{
background: #000;
}
.login_container_panel p{
color: #fff;
margin: 0px;
padding-bottom: 10px;
padding-top: 10px;
}
/*-----------------
02. SIDE-MENU
-----------------*/
.sidebar{
}
.logo{
background: transparent !important;
}
.logo:hover{
background: transparent !important;
}
.logo img{
height: 45px;
}
.btn{
border-radius: 0px !important;
border:none !important;
min-width: 95px;
}
.btn .fa{
margin-right: 5px;
}
.box-body table thead tr th{
font-size: 20px;
font-weight: 500;
}
.box-body table tbody tr th{
font-size: 14px;
font-weight: 400;
}
.box_content{
}
.content-header h1{
font-family: sinhala;
}
.box-title{
font-family: sinhala;
}
.user-panel{
padding-top: 30px;
padding-bottom: 30px;
}
.user-panel .image{
float: left;
}
.user-panel .info{
float: left;
position: inherit;
left:0px;
}
.sidebar-menu li img{
height: 25px;
margin-right: 10px;
}
.slick-list,.slick-slider,.slick-track{position:relative;display:block}.slick-loading .slick-slide,.slick-loading .slick-track{visibility:hidden}.slick-slider{box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{top:0;left:0;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{display:table;content:''}.slick-track:after{clear:both}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}
\ No newline at end of file
/*
Site Name: TimeOut Admin
URI: http:
Description: This is the theme css for TimeOut Admin
Version: 1.0
Author: Amal-Techware Solution
Author URI:
Tags:
---------------------------
THEME STYLES
---------------------------
TABLE OF CONTENTS
---------------------------
01. FONTS-N-SIZES
02. FONTS-COLOR
03. THEMES-N-BACKGROUNDS
04. SPACING-N-POSITIONS
05. ALIGMENTS
06. ALERTS-N-MESSAGES
07. BODY-STRUCTURE
08. GET-MDL-CUSTOMIZATION
*/
/*-------------------------------
01. FONTS-N-SIZES
--------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i');
@font-face {
font-family: sinhala;
src: url("../fonts/SinhalaMN.woff");
}
@font-face {
font-family: riesling;
src: url("../fonts/riesling.ttf");
}
@font-face {
font-family: shree;
src: url("../fonts/Shree714.ttc");
}
*::-webkit-scrollbar {
display: none;
}
.no-scroll .scroll-content {
overflow: hidden;
}
a {
text-decoration: none !important;
}
html,
body {
}
.modal-full {
min-width: 100%;
margin: 0 !important;
height: 100vh;
}
.modal-full .modal-content {
height: 100%;
border-radius: 0px;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
}
.dash_content {
width: calc(100% - 230px);
float: right;
}
/*-------------------------------
02. FONTS-SETTINGS
--------------------------------*/
.text_color_white {
color: #fff !important;
}
.text_color_theme {
color: #D94350 !important;
}
.font_size_xs {
font-size: 12px !important;
}
.font_size_sm {
font-size: 14px !important;
}
.font_size_md {
font-size: 16px !important;
}
.font_size_lg {
font-size: 18px !important;
}
.font_size_xl {
font-size: 20px !important;
}
.font_size_vl {
font-size: 35px !important;
}
.font_weight300 {
font-weight: 300 !important;
}
.font_weight400 {
font-weight: 400 !important;
}
.font_weight500 {
font-weight: 500 !important;
}
.font_weight600 {
font-weight: 600 !important;
}
/*-------------------------------
03. THEMES-N-BACKGROUNDS
--------------------------------*/
.theme_background {
background-size: cover !important;
background-position: center !important;
}
.theme_transparent {
background: transparent !important;
}
.theme_white {
background-color: #f7f8fd !important;
}
.theme_off_white {
background-color: #f4f4f4 !important;
}
.theme_dark_transparent {
background-color: rgba(0, 0, 0, 0.6) !important;
}
.theme_white_transparent {
background-color: rgba(243, 243, 243, 0.6) !important;
}
.primary_background {
background: #D94350;
}
.tile {
box-shadow: none !important;
}
.horizontal .steps-indicator {
display: none !important;
}
/*-------------------------------
04. SPACING-N-POSITIONS
--------------------------------*/
.width25 {
width: 25% !important;
}
.width50 {
width: 50% !important;
}
.width75 {
width: 75% !important;
}
.widthFull {
width: 100% !important;
}
.widthAuto {
width: auto !important;
}
.height25 {
height: 25% !important;
}
.height50 {
height: 50% !important;
}
.height75 {
width: 75% !important;
}
.heightFull {
height: 100% !important;
}
.heightAuto {
height: auto !important;
}
.p0 {
padding: 0px !important;
}
.pl0 {
padding-left: 0px !important;
}
.pr0 {
padding-right: 0px !important;
}
.pt0 {
padding-top: 0px !important;
}
.pb0 {
padding-bottom: 0px !important;
}
.p10 {
padding: 10px !important;
}
.pt10 {
padding-top: 10px !important;
}
.pb10 {
padding-bottom: 10px !important;
}
.m0 {
margin: 0px !important;
}
.ml0 {
margin-left: 0px !important;
}
.mr0 {
margin-right: 0px !important;
}
.mt0 {
margin-top: 0px !important;
}
.mb0 {
margin-bottom: 0px !important;
}
.mAuto {
margin: 0 auto !important;
}
.clear {
clear: both !important;
}
.absolute {
position: absolute !important;
}
.relative {
position: relative !important;
}
.fixed {
position: fixed !important;
}
.borderNone {
border: none !important;
}
/*-------------------------------
05. ALIGMENTS
--------------------------------*/
.floatLeft {
float: left !important;
}
.floatRight {
float: right !important;
}
.textLeft {
text-align: left !important;
}
.textRight {
text-align: right !important;
}
.textCenter {
text-align: center !important;
}
/*-------------------------------
06. ALERTS-N-MESSAGES
--------------------------------*/
.alert {
padding: 15px;
margin-bottom: 20px;
border: 1px solid transparent;
font-weight: 600;
transition: all 0.5s ease;
border-bottom: 0px;
left: 0px;
right: 0px;
}
.warning {
color: #fff;
background-color: #8a6d3b;
}
.success {
color: #fff;
background-color: #3c763d;
}
.error {
color: #fff;
background-color: #a94442;
}
.s_error {
padding-bottom: 10px;
}
.s_error .s_validation {
background: #990000 !important;
padding: 5px !important;
position: relative;
display: inline-block !important;
box-shadow: 1px 1px 1px #aaaaaa;
margin-top: 0px;
border-radius: 2px;
color: #fff;
width: 100%;
padding-right: 10px !important;
padding-left: 10px !important;
font-weight: 300;
}
.s_error .s_validation:before {
content: '';
width: 0;
height: 0;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-bottom: 8px solid #990000;
position: absolute;
top: -8px;
left: 10px;
}
.s_label:after {
color: #990000 !important;
}
.s_error input,
.c-error select,
.s_error .s_choice-option {
background: #fff0f4;
color: #990000;
}
.s_error input,
.s_error select {
border: 1px solid #990000 !important;
}
/*-------------------------------
07. BODY-STRUCTURE
--------------------------------*/
section.module.parallax {
background-repeat: no-repeat !important;
background-attachment: fixed !important;
background-size: cover !important;
}
/*
Site Name: SQM
URI: http:http://
Description: This is the custom js
Version: 1.0
Author: Amal-Techware Solution
Author URI:
Tags:
---------------------------
HOME-INDEX-STYLES
---------------------------
TABLE OF CONTENTS
---------------------------
1.0 LOGIN-QUOTE-SLIDER
*/
$(document).ready(function() {
/* 1.0 SIDE-MENU */
/* 2.0 LOGIN-QUOTE-SLIDER */
$('.login_slider_quotes ul').slick(
{
dots: true,
arrows: false,
slidesToScroll: 1,
autoplay: true,
autoplaySpeed: 2000
}
);
});
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment