:3
This commit is contained in:
0
crm-panel/.gitignore → .gitignore
vendored
0
crm-panel/.gitignore → .gitignore
vendored
61
app/Http/Controllers/PostController.php
Normal file
61
app/Http/Controllers/PostController.php
Normal file
@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\Models\Post;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class PostController extends Controller
|
||||
{
|
||||
public function index()
|
||||
{
|
||||
$posts = Post::paginate(10); // paginated, no dumb errors
|
||||
return view('posts.index', compact('posts'));
|
||||
}
|
||||
|
||||
public function create()
|
||||
{
|
||||
return view('posts.create');
|
||||
}
|
||||
|
||||
public function store(Request $request)
|
||||
{
|
||||
$validated = $request->validate([
|
||||
'title' => 'required|string|max:255',
|
||||
'content' => 'required|string',
|
||||
]);
|
||||
|
||||
Post::create($validated);
|
||||
|
||||
return redirect()->route('posts.index')->with('success', 'Post created successfully.');
|
||||
}
|
||||
|
||||
public function show(Post $post)
|
||||
{
|
||||
return view('posts.show', compact('post'));
|
||||
}
|
||||
|
||||
public function edit(Post $post)
|
||||
{
|
||||
return view('posts.edit', compact('post'));
|
||||
}
|
||||
|
||||
public function update(Request $request, Post $post)
|
||||
{
|
||||
$validated = $request->validate([
|
||||
'title' => 'required|string|max:255',
|
||||
'content' => 'required|string',
|
||||
]);
|
||||
|
||||
$post->update($validated);
|
||||
|
||||
return redirect()->route('posts.index')->with('success', 'Post updated successfully.');
|
||||
}
|
||||
|
||||
public function destroy(Post $post)
|
||||
{
|
||||
$post->delete();
|
||||
|
||||
return redirect()->route('posts.index')->with('success', 'Post deleted successfully.');
|
||||
}
|
||||
}
|
13
app/Models/Post.php
Normal file
13
app/Models/Post.php
Normal file
@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Post extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
protected $fillable = ['title', 'content'];
|
||||
}
|
0
crm-panel/composer.lock → composer.lock
generated
0
crm-panel/composer.lock → composer.lock
generated
30
database/migrations/2025_06_03_063452_create_posts_table.php
Normal file
30
database/migrations/2025_06_03_063452_create_posts_table.php
Normal file
@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('posts', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('title');
|
||||
$table->text('content');
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('posts');
|
||||
}
|
||||
};
|
2
crm-panel/package-lock.json → package-lock.json
generated
2
crm-panel/package-lock.json → package-lock.json
generated
@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "crm-panel",
|
||||
"name": "ccms",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
3322
public/assets/css/animate.css
vendored
Normal file
3322
public/assets/css/animate.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
11731
public/assets/css/bootstrap.min.css
vendored
Normal file
11731
public/assets/css/bootstrap.min.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
206
public/assets/css/flaticon.css
Normal file
206
public/assets/css/flaticon.css
Normal file
@ -0,0 +1,206 @@
|
||||
@font-face {
|
||||
font-family: "flaticon";
|
||||
src: url("../fonts/flaticon-92c18bb4a83ca25255a20027c5427312.ttf") format("truetype"),
|
||||
url("../fonts/flaticon-92c18bb4a83ca25255a20027c5427312.woff") format("woff"),
|
||||
url("../fonts/flaticon-92c18bb4a83ca25255a20027c5427312.woff2") format("woff2"),
|
||||
url("../fonts/flaticon-92c18bb4a83ca25255a20027c5427312.eot#iefix") format("embedded-opentype"),
|
||||
url("../fonts/flaticon-92c18bb4a83ca25255a20027c5427312.svg#flaticon") format("svg");
|
||||
}
|
||||
|
||||
i[class^="flaticon-"]:before, i[class*=" flaticon-"]:before {
|
||||
font-family: flaticon !important;
|
||||
font-style: normal;
|
||||
font-weight: normal !important;
|
||||
font-variant: normal;
|
||||
text-transform: none;
|
||||
line-height: 1;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.flaticon-cardiovascular:before {
|
||||
content: "\f101";
|
||||
}
|
||||
.flaticon-map:before {
|
||||
content: "\f102";
|
||||
}
|
||||
.flaticon-heart-beat:before {
|
||||
content: "\f103";
|
||||
}
|
||||
.flaticon-send:before {
|
||||
content: "\f104";
|
||||
}
|
||||
.flaticon-first-aid-kit:before {
|
||||
content: "\f105";
|
||||
}
|
||||
.flaticon-heart:before {
|
||||
content: "\f106";
|
||||
}
|
||||
.flaticon-support:before {
|
||||
content: "\f107";
|
||||
}
|
||||
.flaticon-cardiology:before {
|
||||
content: "\f108";
|
||||
}
|
||||
.flaticon-healthcare:before {
|
||||
content: "\f109";
|
||||
}
|
||||
.flaticon-cardiogram:before {
|
||||
content: "\f10a";
|
||||
}
|
||||
.flaticon-call:before {
|
||||
content: "\f10b";
|
||||
}
|
||||
.flaticon-shopping-cart:before {
|
||||
content: "\f10c";
|
||||
}
|
||||
.flaticon-search:before {
|
||||
content: "\f10d";
|
||||
}
|
||||
.flaticon-exit:before {
|
||||
content: "\f10e";
|
||||
}
|
||||
.flaticon-microsurgery:before {
|
||||
content: "\f10f";
|
||||
}
|
||||
.flaticon-phone-call:before {
|
||||
content: "\f110";
|
||||
}
|
||||
.flaticon-email:before {
|
||||
content: "\f111";
|
||||
}
|
||||
.flaticon-clock:before {
|
||||
content: "\f112";
|
||||
}
|
||||
.flaticon-share:before {
|
||||
content: "\f113";
|
||||
}
|
||||
.flaticon-chat:before {
|
||||
content: "\f114";
|
||||
}
|
||||
.flaticon-pdf:before {
|
||||
content: "\f115";
|
||||
}
|
||||
.flaticon-arrow-down:before {
|
||||
content: "\f116";
|
||||
}
|
||||
.flaticon-straight-quotes:before {
|
||||
content: "\f117";
|
||||
}
|
||||
.flaticon-veterinarian:before {
|
||||
content: "\f118";
|
||||
}
|
||||
.flaticon-hospital:before {
|
||||
content: "\f119";
|
||||
}
|
||||
.flaticon-heart-disease:before {
|
||||
content: "\f11a";
|
||||
}
|
||||
.flaticon-cardiology-2:before {
|
||||
content: "\f11b";
|
||||
}
|
||||
.flaticon-diagnosis:before {
|
||||
content: "\f11c";
|
||||
}
|
||||
.flaticon-arrow-pointing-to-right:before {
|
||||
content: "\f11d";
|
||||
}
|
||||
.flaticon-map-1:before {
|
||||
content: "\f11e";
|
||||
}
|
||||
.flaticon-heart-2:before {
|
||||
content: "\f11f";
|
||||
}
|
||||
.flaticon-heart-3:before {
|
||||
content: "\f120";
|
||||
}
|
||||
.flaticon-organ-transplantation:before {
|
||||
content: "\f121";
|
||||
}
|
||||
.flaticon-heart-attack:before {
|
||||
content: "\f122";
|
||||
}
|
||||
.flaticon-heart-4:before {
|
||||
content: "\f123";
|
||||
}
|
||||
.flaticon-vaccine:before {
|
||||
content: "\f124";
|
||||
}
|
||||
.flaticon-heart-5:before {
|
||||
content: "\f125";
|
||||
}
|
||||
.flaticon-heart-6:before {
|
||||
content: "\f126";
|
||||
}
|
||||
.flaticon-cardiologist:before {
|
||||
content: "\f127";
|
||||
}
|
||||
.flaticon-health-care:before {
|
||||
content: "\f128";
|
||||
}
|
||||
.flaticon-heart-7:before {
|
||||
content: "\f129";
|
||||
}
|
||||
.flaticon-defribillator:before {
|
||||
content: "\f12a";
|
||||
}
|
||||
.flaticon-heart-8:before {
|
||||
content: "\f12b";
|
||||
}
|
||||
.flaticon-emergency-call:before {
|
||||
content: "\f12c";
|
||||
}
|
||||
.flaticon-awards:before {
|
||||
content: "\f12d";
|
||||
}
|
||||
.flaticon-ecg-reading:before {
|
||||
content: "\f12e";
|
||||
}
|
||||
.flaticon-patient:before {
|
||||
content: "\f12f";
|
||||
}
|
||||
.flaticon-patient-1:before {
|
||||
content: "\f130";
|
||||
}
|
||||
.flaticon-medical-insurance:before {
|
||||
content: "\f131";
|
||||
}
|
||||
.flaticon-search-1:before {
|
||||
content: "\f132";
|
||||
}
|
||||
.flaticon-placeholder:before {
|
||||
content: "\f133";
|
||||
}
|
||||
.flaticon-healthcare-2:before {
|
||||
content: "\f134";
|
||||
}
|
||||
.flaticon-file:before {
|
||||
content: "\f135";
|
||||
}
|
||||
.flaticon-tick-mark:before {
|
||||
content: "\f136";
|
||||
}
|
||||
.flaticon-doctor:before {
|
||||
content: "\f137";
|
||||
}
|
||||
.flaticon-doctor-1:before {
|
||||
content: "\f138";
|
||||
}
|
||||
.flaticon-right-arrow:before {
|
||||
content: "\f139";
|
||||
}
|
||||
.flaticon-share-1:before {
|
||||
content: "\f13a";
|
||||
}
|
||||
.flaticon-left-quote:before {
|
||||
content: "\f13b";
|
||||
}
|
||||
.flaticon-comment:before {
|
||||
content: "\f13c";
|
||||
}
|
||||
.flaticon-phone-call-1:before {
|
||||
content: "\f13d";
|
||||
}
|
||||
.flaticon-bubble-chat:before {
|
||||
content: "\f13e";
|
||||
}
|
2337
public/assets/css/font-awesome.css
vendored
Normal file
2337
public/assets/css/font-awesome.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
72
public/assets/css/fontello.css
vendored
Normal file
72
public/assets/css/fontello.css
vendored
Normal file
@ -0,0 +1,72 @@
|
||||
@font-face {
|
||||
font-family: 'fontello';
|
||||
src: url('../fonts/fontello-51113876.eot');
|
||||
src: url('../fonts/fontello-51113876.eot#iefix') format('embedded-opentype'),
|
||||
url('../fonts/fontello-51113876.woff2') format('woff2'),
|
||||
url('../fonts/fontello-51113876.woff') format('woff'),
|
||||
url('../fonts/fontello-51113876.ttf') format('truetype'),
|
||||
url('../fonts/fontello-51113876.svg#fontello') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
|
||||
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
|
||||
/*
|
||||
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
||||
@font-face {
|
||||
font-family: 'fontello';
|
||||
src: url('https://themetechmount.com/html/dezily/font/fontello.svg?51113876#fontello') format('svg');
|
||||
}
|
||||
}
|
||||
*/
|
||||
[class^="icon-"]:before, [class*=" icon-"]:before {
|
||||
font-family: "fontello";
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
speak: never;
|
||||
|
||||
display: inline-block;
|
||||
text-decoration: inherit;
|
||||
width: 1em;
|
||||
margin-right: .2em;
|
||||
text-align: center;
|
||||
/* opacity: .8; */
|
||||
|
||||
/* For safety - reset parent styles, that can break glyph codes*/
|
||||
font-variant: normal;
|
||||
text-transform: none;
|
||||
|
||||
/* fix buttons height, for twitter bootstrap */
|
||||
line-height: 1em;
|
||||
|
||||
/* Animation center compensation - margins should be symmetric */
|
||||
/* remove if not needed */
|
||||
margin-left: .2em;
|
||||
|
||||
/* you can be more comfortable with increased icons size */
|
||||
/* font-size: 120%; */
|
||||
|
||||
/* Font smoothing. That was taken from TWBS */
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
|
||||
/* Uncomment for 3D effect */
|
||||
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
|
||||
}
|
||||
|
||||
.icon-ok:before { content: '\e800'; } /* '' */
|
||||
.icon-left-dir:before { content: '\e801'; } /* '' */
|
||||
.icon-logout:before { content: '\e802'; } /* '' */
|
||||
.icon-right-dir:before { content: '\e803'; } /* '' */
|
||||
.icon-quote-left-alt:before { content: '\e804'; } /* '' */
|
||||
.icon-ok-circle:before { content: '\e805'; } /* '' */
|
||||
.icon-ok-circled:before { content: '\e806'; } /* '' */
|
||||
.icon-share:before { content: '\e807'; } /* '' */
|
||||
.icon-phone:before { content: '\e808'; } /* '' */
|
||||
.icon-mail:before { content: '\e809'; } /* '' */
|
||||
.icon-plus:before { content: '\e80a'; } /* '' */
|
||||
.icon-plus-1:before { content: '\e80b'; } /* '' */
|
||||
.icon-right-open:before { content: '\e80c'; } /* '' */
|
||||
.icon-left-open:before { content: '\e80d'; } /* '' */
|
||||
.icon-angle-circled-right:before { content: '\f138'; } /* '' */
|
||||
.icon-right:before { content: '\f178'; } /* '' */
|
3772
public/assets/css/main.css
Normal file
3772
public/assets/css/main.css
Normal file
File diff suppressed because it is too large
Load Diff
399
public/assets/css/megamenu.css
Normal file
399
public/assets/css/megamenu.css
Normal file
@ -0,0 +1,399 @@
|
||||
|
||||
/* MEGAMENU STYLE
|
||||
=================================*/
|
||||
nav.main-menu .mega-menu-item.megamenu-fw {
|
||||
position: static;
|
||||
}
|
||||
nav.main-menu .megamenu-fw .mega-submenu, nav.main-menu .megamenu-content {
|
||||
width: auto !important;
|
||||
}
|
||||
nav.main-menu .megamenu-fw .mega-submenu .row{
|
||||
margin: 0;
|
||||
}
|
||||
nav.main-menu .megamenu-content {
|
||||
width: 100%;
|
||||
}
|
||||
nav.main-menu .megamenu-content .title{
|
||||
margin: 0;
|
||||
display: block;
|
||||
background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
|
||||
font-weight: 500;
|
||||
font-size: 14px;
|
||||
text-transform: capitalize;
|
||||
padding: 6px 20px;
|
||||
color: inherit;
|
||||
border-right: 1px solid transparent;
|
||||
}
|
||||
nav.main-menu .mega-menu-item.megamenu-fw .mega-submenu {
|
||||
left: 0;
|
||||
right: 0;
|
||||
}
|
||||
nav.main-menu ul {
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
list-style: none;
|
||||
}
|
||||
nav.main-menu ul li {
|
||||
position: relative;
|
||||
}
|
||||
nav.main-menu{
|
||||
margin-bottom: 0;
|
||||
-moz-border-radius: 0px;
|
||||
-webkit-border-radius: 0px;
|
||||
-o-border-radius: 0px;
|
||||
border-radius: 0px;
|
||||
border: none;
|
||||
z-index: 2;
|
||||
}
|
||||
nav.main-menu li ul.mega-submenu {
|
||||
position: absolute;
|
||||
display: block;
|
||||
width: 250px;
|
||||
opacity: 0.5;
|
||||
z-index: 2;
|
||||
border: 0;
|
||||
top: 50px;
|
||||
-webkit-transform-origin: top;
|
||||
transform-origin: top;
|
||||
-webkit-animation-fill-mode: forwards;
|
||||
animation-fill-mode: forwards;
|
||||
transition: all .5s ease;
|
||||
-webkit-transition: all .5s ease;
|
||||
-moz-transition: all 500ms ease;
|
||||
-o-transition: all 500ms ease;
|
||||
-ms-transition: all 500ms ease;
|
||||
background: #fff;
|
||||
border-radius: 0;
|
||||
box-shadow: 0 3px 25px 0px rgb(43 52 59 / 10%), 0 0 0 rgb(43 52 59 / 10%) inset;
|
||||
-webkit-box-shadow: 0 3px 25px 0px rgb(43 52 59 / 10%), 0 0 0 rgb(43 52 59 / 10%) inset;
|
||||
background-clip: padding-box;
|
||||
border-top: 3px solid #006836;
|
||||
-webkit-transition: all 0.2s ease-out;
|
||||
transition: all 0.5s ease-out;
|
||||
-moz-transition: all 0.5s ease-out;
|
||||
-ms-transition: all 0.5s ease-out;
|
||||
-webkit-box-shadow: 0px 4px 4px 1px rgb(0 0 0 / 20%);
|
||||
box-shadow: 0px 4px 4px 1px rgb(0 0 0 / 20%);
|
||||
-webkit-transform: rotateX(-90deg);
|
||||
transform: rotateX(-90deg);
|
||||
-webkit-transform-origin: 0 0;
|
||||
transform-origin: 0 0;
|
||||
}
|
||||
nav.main-menu ul.menu > li{
|
||||
z-index: 11;
|
||||
display: inline-block;
|
||||
}
|
||||
nav.main-menu ul.menu li ul > li:not(:first-child) {
|
||||
border-top: 1px solid;
|
||||
border-color: var(--base-grey);
|
||||
}
|
||||
nav.main-menu ul.menu li ul.mega-submenu li a {
|
||||
font-size: 14px;
|
||||
line-height: 24px;
|
||||
font-weight: 400;
|
||||
display: block;
|
||||
padding: 10px 10px 10px 20px;
|
||||
text-align: left;
|
||||
color: var(--base-bodyfont-color);
|
||||
background-color: var(--base-white);
|
||||
font-family: var(--base-bodyfont);
|
||||
border-radius: 0;
|
||||
-webkit-transition: all .3s linear;
|
||||
transition: all .3s linear;
|
||||
}
|
||||
nav.main-menu ul.menu li ul.mega-submenu li a span {
|
||||
display: inline!important;
|
||||
padding: 4px 8px;
|
||||
background: #ff6f00;
|
||||
color: var(--base-white) !important;
|
||||
text-shadow: none;
|
||||
border-radius: 0;
|
||||
margin-left: 14px;
|
||||
position: relative;
|
||||
text-transform: uppercase;
|
||||
font-size: 11px!important;
|
||||
font-weight: 500!important;
|
||||
}
|
||||
nav.main-menu ul.menu li ul.mega-submenu li a span:before {
|
||||
right: 100%;
|
||||
top: 50%;
|
||||
border: solid transparent;
|
||||
content: " ";
|
||||
height: 0;
|
||||
width: 0;
|
||||
position: absolute;
|
||||
pointer-events: none;
|
||||
border-color: var(--base-white);
|
||||
border-right-color: #ff6f00;
|
||||
border-width: 5px;
|
||||
margin-top: -5px;
|
||||
}
|
||||
ul.menu-col li a{
|
||||
color: #6f6f6f;
|
||||
}
|
||||
ul.menu-col li a:hover,
|
||||
ul.menu-col li a:focus{
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
|
||||
/* Responsive
|
||||
=================================*/
|
||||
|
||||
@media (min-width: 1200px) {
|
||||
|
||||
nav.main-menu li.mega-menu-item ul.mega-submenu li ul {
|
||||
left: 100%;
|
||||
top: 0;
|
||||
border-top: 0;
|
||||
}
|
||||
nav.main-menu li.mega-menu-item:last-child > ul {
|
||||
right: 0;
|
||||
left: auto;
|
||||
}
|
||||
nav.main-menu ul.menu > li > a{
|
||||
display: block;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
font-size: 14px;
|
||||
line-height: 26px;
|
||||
font-family: var(--base-headingfont);
|
||||
}
|
||||
nav.main-menu li.mega-menu-item ul.mega-submenu li.mega-menu-item > a.mega-menu-link:before {
|
||||
font-family: 'FontAwesome';
|
||||
float: right;
|
||||
content: "\f105";
|
||||
margin-top: 0;
|
||||
}
|
||||
nav.main-menu ul.mega-submenu.megamenu-content .col-menu{
|
||||
padding: 0;
|
||||
width: 240px;
|
||||
border-right: solid 1px #f0f0f0;
|
||||
}
|
||||
nav.main-menu ul.mega-submenu.megamenu-content .col-menu:first-child{
|
||||
border-left: none;
|
||||
}
|
||||
nav.main-menu ul.mega-submenu.megamenu-content .col-menu:last-child{
|
||||
border-right: none;
|
||||
}
|
||||
nav.main-menu ul.mega-submenu.megamenu-content .content ul.menu-col li:last-child a{
|
||||
border-bottom: unset;
|
||||
}
|
||||
nav.main-menu li.mega-menu-item.on ul.mega-submenu.megamenu-content .content{
|
||||
display: block !important;
|
||||
height: auto !important;
|
||||
}
|
||||
nav.main-menu li.mega-menu-item:hover > ul.mega-submenu {
|
||||
opacity: 1;
|
||||
display: block;
|
||||
visibility: visible;
|
||||
height: auto;
|
||||
filter: alpha(opacity=100);
|
||||
-webkit-transform: rotateX(0);
|
||||
transform: rotateX(0);
|
||||
}
|
||||
|
||||
header.ttm-header-style-01 .site-navigation nav.main-menu li ul.mega-submenu { top: 82px; }
|
||||
header.ttm-header-style-02 .site-navigation nav.main-menu li ul.mega-submenu { top: 82px; }
|
||||
header.ttm-header-style-03 .site-navigation nav.main-menu li ul.mega-submenu { top: 100px; }
|
||||
}
|
||||
|
||||
|
||||
@media (max-width: 1199px) {
|
||||
|
||||
.menubar{
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
z-index: 9;
|
||||
}
|
||||
.menubar-box {
|
||||
display: block;
|
||||
width: 30px;
|
||||
height: 24px;
|
||||
}
|
||||
.menubar-inner, .menubar-inner:after, .menubar-inner:before {
|
||||
position: absolute;
|
||||
width: 30px;
|
||||
height: 3px;
|
||||
transition-timing-function: ease;
|
||||
transition-duration: .15s;
|
||||
transition-property: transform;
|
||||
border-radius: 4px;
|
||||
background-color: #2f2f2f;
|
||||
}
|
||||
.menubar--squeeze .menubar-inner {
|
||||
top: 50%;
|
||||
display: block;
|
||||
margin-top: -2px;
|
||||
transition-timing-function: cubic-bezier(.55,.055,.675,.19);
|
||||
transition-duration: .1s;
|
||||
}
|
||||
.menubar-inner:after, .menubar-inner:before {
|
||||
display: block;
|
||||
content: '';
|
||||
}
|
||||
.menubar-inner:after {
|
||||
bottom: -8px;
|
||||
}
|
||||
.menubar-inner:before {
|
||||
top: -8px;
|
||||
}
|
||||
.menubar--squeeze.is-active .menubar-inner {
|
||||
transition-delay: .14s;
|
||||
transition-timing-function: cubic-bezier(.215,.61,.355,1);
|
||||
transform: rotate(45deg);
|
||||
}
|
||||
.menubar--squeeze.is-active .menubar-inner:before {
|
||||
top: 0;
|
||||
transition: top .1s ease,opacity .1s ease .14s;
|
||||
opacity: 0;
|
||||
}
|
||||
.menubar--squeeze.is-active .menubar-inner:after {
|
||||
bottom: 0;
|
||||
transition: bottom .1s ease,transform .1s cubic-bezier(.215,.61,.355,1) .14s;
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
nav.main-menu{
|
||||
display: none ;
|
||||
max-height: 10000px;
|
||||
position: absolute;
|
||||
box-shadow: 0 0 10px 0 rgba(0, 43, 92, 0.08);
|
||||
z-index: 100;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background-color: var(--base-white);
|
||||
border-top: 3px solid;
|
||||
overflow: visible;
|
||||
}
|
||||
nav.main-menu.show{
|
||||
display: block;
|
||||
max-height: 10000px;
|
||||
}
|
||||
nav.main-menu ul.menu, nav.main-menu ul.menu > li{
|
||||
display: block;
|
||||
position: relative;
|
||||
}
|
||||
nav.main-menu ul.menu > li > a{
|
||||
display: block;
|
||||
font-weight: 600;
|
||||
font-size: 16px;
|
||||
padding: 15px 15px;
|
||||
line-height: 20px;
|
||||
text-align: left;
|
||||
background-color: var(--base-white);
|
||||
}
|
||||
nav.main-menu ul.menu > li {
|
||||
border-top: solid 1px;
|
||||
border-color: var(--base-grey);
|
||||
}
|
||||
nav.main-menu ul.menu > li:first-child{
|
||||
border-top: none;
|
||||
}
|
||||
nav.main-menu ul.menu li > ul.mega-submenu li a:hover{
|
||||
background-color: var(--base-white);
|
||||
}
|
||||
nav.main-menu li.mega-menu-item a.mega-menu-link:after{
|
||||
font-family: 'FontAwesome';
|
||||
content: "\f105";
|
||||
float: right;
|
||||
font-size: 16px;
|
||||
}
|
||||
nav.main-menu li.mega-menu-item.on > a.mega-menu-link:after{
|
||||
content: "\f107";
|
||||
}
|
||||
nav.main-menu ul.menu-left > li:last-child > ul.mega-submenu{
|
||||
border-bottom: solid 1px #e0e0e0;
|
||||
}
|
||||
nav.main-menu ul.menu li.mega-menu-item ul.mega-submenu{
|
||||
width: 100%;
|
||||
background-color: var(--base-white);
|
||||
float: none;
|
||||
border: none;
|
||||
padding: 0 0 0 15px;
|
||||
-moz-box-shadow: 0px 0px 0px;
|
||||
-webkit-box-shadow: 0px 0px 0px;
|
||||
-o-box-shadow: 0px 0px 0px;
|
||||
box-shadow: 0px 0px 0px;
|
||||
-moz-border-radius: 0px 0px 0px;
|
||||
-webkit-border-radius: 0px 0px 0px;
|
||||
-o-border-radius: 0px 0px 0px;
|
||||
border-radius: 0px 0px 0px;
|
||||
}
|
||||
nav.main-menu ul.menu li ul.mega-submenu li a { padding: 10px 25px; }
|
||||
nav.main-menu ul.menu li ul.mega-submenu li.active > a { background-color: var(--base-white); }
|
||||
nav.main-menu ul.menu li.mega-menu-item ul.mega-submenu.active {
|
||||
position: relative;
|
||||
visibility: visible;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
opacity: 1;
|
||||
z-index: 1;
|
||||
display: contents;
|
||||
background-color: inherit;
|
||||
box-shadow: unset;
|
||||
}
|
||||
nav.main-menu ul.menu ul.mega-submenu li.mega-menu-item.on > ul.mega-submenu{
|
||||
display: inline-block;
|
||||
margin-top: -10px;
|
||||
}
|
||||
nav.main-menu .mega-menu-item .megamenu-content .col-menu .title{
|
||||
padding: 10px 15px 10px 0;
|
||||
line-height: 24px;
|
||||
font-size: 14px;
|
||||
text-transform: none;
|
||||
font-weight: 500;
|
||||
letter-spacing: 0px;
|
||||
margin-bottom: 0;
|
||||
cursor: pointer;
|
||||
background-color: transparent;
|
||||
border-right: 0;
|
||||
border-bottom: solid 1px #e0e0e0;
|
||||
}
|
||||
nav.main-menu .mega-menu-item .megamenu-content .col-menu .title:before{
|
||||
font-family: 'FontAwesome';
|
||||
content: "\f105";
|
||||
float: right;
|
||||
font-size: 16px;
|
||||
margin-left: 10px;
|
||||
position: relative;
|
||||
right: 0;
|
||||
}
|
||||
nav.main-menu .mega-menu-item .megamenu-content .col-menu:last-child .title{
|
||||
border-bottom: none;
|
||||
}
|
||||
nav.main-menu .mega-menu-item .megamenu-content .col-menu.on:last-child .title{
|
||||
border-bottom: solid 1px #e0e0e0;
|
||||
}
|
||||
nav.main-menu .mega-menu-item .megamenu-content .col-menu:last-child ul.menu-col li:last-child a{
|
||||
border-bottom: none;
|
||||
}
|
||||
nav.main-menu .mega-menu-item .megamenu-content .col-menu.on .title:before{
|
||||
content: "\f107";
|
||||
}
|
||||
nav.main-menu .megamenu-content{
|
||||
padding: 0;
|
||||
}
|
||||
nav.main-menu .megamenu-content .col-menu{
|
||||
padding-bottom: 0;
|
||||
max-width: 100%;
|
||||
flex: 100%;
|
||||
}
|
||||
nav.main-menu .megamenu-content .title{
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
padding: 10px 15px;
|
||||
margin-bottom: 0;
|
||||
font-weight: normal;
|
||||
}
|
||||
nav.main-menu .megamenu-content .content{
|
||||
display: none;
|
||||
}
|
||||
nav.main-menu .megamenu-content .content.active{
|
||||
display: block;
|
||||
}
|
||||
|
||||
|
||||
}
|
170
public/assets/css/prettyPhoto.css
Normal file
170
public/assets/css/prettyPhoto.css
Normal file
@ -0,0 +1,170 @@
|
||||
div.pp_default .pp_top,div.pp_default .pp_top .pp_middle,div.pp_default .pp_top .pp_left,div.pp_default .pp_top .pp_right,div.pp_default .pp_bottom,div.pp_default .pp_bottom .pp_left,div.pp_default .pp_bottom .pp_middle,div.pp_default .pp_bottom .pp_right{height:13px}
|
||||
div.pp_default .pp_top .pp_left{background:url("../images/prettyPhoto/default/sprite.png") -78px -93px no-repeat}
|
||||
div.pp_default .pp_top .pp_middle{background:url("../images/prettyPhoto/default/sprite_x.png") top left repeat-x}
|
||||
div.pp_default .pp_top .pp_right{background:url("../images/prettyPhoto/default/sprite.png") -112px -93px no-repeat}
|
||||
div.pp_default .pp_content .ppt{color:#f8f8f8}
|
||||
div.pp_default .pp_content_container .pp_left{background:url("../images/prettyPhoto/default/sprite_y.png") -7px 0 repeat-y;padding-left:13px}
|
||||
div.pp_default .pp_content_container .pp_right{background:url("../images/prettyPhoto/default/sprite_y.png") top right repeat-y;padding-right:13px}
|
||||
div.pp_default .pp_next:hover{background:url("../images/prettyPhoto/default/sprite_next.png") center right no-repeat;cursor:pointer}
|
||||
div.pp_default .pp_previous:hover{background:url("../images/prettyPhoto/default/sprite_prev.png") center left no-repeat;cursor:pointer}
|
||||
div.pp_default .pp_expand{background:url("../images/prettyPhoto/default/sprite.png") 0 -29px no-repeat;cursor:pointer;width:28px;height:28px}
|
||||
div.pp_default .pp_expand:hover{background:url("../images/prettyPhoto/default/sprite.png") 0 -56px no-repeat;cursor:pointer}
|
||||
div.pp_default .pp_contract{background:url("../images/prettyPhoto/default/sprite.png") 0 -84px no-repeat;cursor:pointer;width:28px;height:28px}
|
||||
div.pp_default .pp_contract:hover{background:url("../images/prettyPhoto/default/sprite.png") 0 -113px no-repeat;cursor:pointer}
|
||||
div.pp_default .pp_close{width:30px;height:30px;background:url("../images/prettyPhoto/default/sprite.png") 2px 1px no-repeat;cursor:pointer}
|
||||
div.pp_default .pp_gallery ul li a{background:url("../images/prettyPhoto/default/default_thumb.png") center center #f8f8f8;border:1px solid #aaa}
|
||||
div.pp_default .pp_social{margin-top:7px}
|
||||
div.pp_default .pp_gallery a.pp_arrow_previous,div.pp_default .pp_gallery a.pp_arrow_next{position:static;left:auto}
|
||||
div.pp_default .pp_nav .pp_play,div.pp_default .pp_nav .pp_pause{background:url("../images/prettyPhoto/default/sprite.png") -51px 1px no-repeat;height:30px;width:30px}
|
||||
div.pp_default .pp_nav .pp_pause{background-position:-51px -29px}
|
||||
div.pp_default a.pp_arrow_previous,div.pp_default a.pp_arrow_next{background:url("../images/prettyPhoto/default/sprite.png") -31px -3px no-repeat;height:20px;width:20px;margin:4px 0 0}
|
||||
div.pp_default a.pp_arrow_next{left:52px;background-position:-82px -3px}
|
||||
div.pp_default .pp_content_container .pp_details{margin-top:5px}
|
||||
div.pp_default .pp_nav{clear:none;height:30px;width:110px;position:relative}
|
||||
div.pp_default .pp_nav .currentTextHolder{font-family:Georgia;font-style:italic;color:#999;font-size:11px;left:75px;line-height:25px;position:absolute;top:2px;margin:0;padding:0 0 0 10px}
|
||||
div.pp_default .pp_close:hover,div.pp_default .pp_nav .pp_play:hover,div.pp_default .pp_nav .pp_pause:hover,div.pp_default .pp_arrow_next:hover,div.pp_default .pp_arrow_previous:hover{opacity:0.7}
|
||||
div.pp_default .pp_description{font-size:11px;font-weight:700;line-height:14px;margin:5px 50px 5px 0}
|
||||
div.pp_default .pp_bottom .pp_left{background:url("../images/prettyPhoto/default/sprite.png") -78px -127px no-repeat}
|
||||
div.pp_default .pp_bottom .pp_middle{background:url("../images/prettyPhoto/default/sprite_x.png") bottom left repeat-x}
|
||||
div.pp_default .pp_bottom .pp_right{background:url("../images/prettyPhoto/default/sprite.png") -112px -127px no-repeat}
|
||||
div.pp_default .pp_loaderIcon{background:url("../images/prettyPhoto/default/loader.gif") center center no-repeat}
|
||||
div.light_rounded .pp_top .pp_left{background:url("../images/prettyPhoto/light_rounded/sprite.png") -88px -53px no-repeat}
|
||||
div.light_rounded .pp_top .pp_right{background:url("../images/prettyPhoto/light_rounded/sprite.png") -110px -53px no-repeat}
|
||||
div.light_rounded .pp_next:hover{background:url("../images/prettyPhoto/light_rounded/btnNext.png") center right no-repeat;cursor:pointer}
|
||||
div.light_rounded .pp_previous:hover{background:url("../images/prettyPhoto/light_rounded/btnPrevious.png") center left no-repeat;cursor:pointer}
|
||||
div.light_rounded .pp_expand{background:url("../images/prettyPhoto/light_rounded/sprite.png") -31px -26px no-repeat;cursor:pointer}
|
||||
div.light_rounded .pp_expand:hover{background:url("../images/prettyPhoto/light_rounded/sprite.png") -31px -47px no-repeat;cursor:pointer}
|
||||
div.light_rounded .pp_contract{background:url("../images/prettyPhoto/light_rounded/sprite.png") 0 -26px no-repeat;cursor:pointer}
|
||||
div.light_rounded .pp_contract:hover{background:url("../images/prettyPhoto/light_rounded/sprite.png") 0 -47px no-repeat;cursor:pointer}
|
||||
div.light_rounded .pp_close{width:75px;height:22px;background:url("../images/prettyPhoto/light_rounded/sprite.png") -1px -1px no-repeat;cursor:pointer}
|
||||
div.light_rounded .pp_nav .pp_play{background:url("../images/prettyPhoto/light_rounded/sprite.png") -1px -100px no-repeat;height:15px;width:14px}
|
||||
div.light_rounded .pp_nav .pp_pause{background:url("../images/prettyPhoto/light_rounded/sprite.png") -24px -100px no-repeat;height:15px;width:14px}
|
||||
div.light_rounded .pp_arrow_previous{background:url("../images/prettyPhoto/light_rounded/sprite.png") 0 -71px no-repeat}
|
||||
div.light_rounded .pp_arrow_next{background:url("../images/prettyPhoto/light_rounded/sprite.png") -22px -71px no-repeat}
|
||||
div.light_rounded .pp_bottom .pp_left{background:url("../images/prettyPhoto/light_rounded/sprite.png") -88px -80px no-repeat}
|
||||
div.light_rounded .pp_bottom .pp_right{background:url("../images/prettyPhoto/light_rounded/sprite.png") -110px -80px no-repeat}
|
||||
div.dark_rounded .pp_top .pp_left{background:url("../images/prettyPhoto/dark_rounded/sprite.png") -88px -53px no-repeat}
|
||||
div.dark_rounded .pp_top .pp_right{background:url("../images/prettyPhoto/dark_rounded/sprite.png") -110px -53px no-repeat}
|
||||
div.dark_rounded .pp_content_container .pp_left{background:url("../images/prettyPhoto/dark_rounded/contentPattern.png") top left repeat-y}
|
||||
div.dark_rounded .pp_content_container .pp_right{background:url("../images/prettyPhoto/dark_rounded/contentPattern.png") top right repeat-y}
|
||||
div.dark_rounded .pp_next:hover{background:url("../images/prettyPhoto/dark_rounded/btnNext.png") center right no-repeat;cursor:pointer}
|
||||
div.dark_rounded .pp_previous:hover{background:url("../images/prettyPhoto/dark_rounded/btnPrevious.png") center left no-repeat;cursor:pointer}
|
||||
div.dark_rounded .pp_expand{background:url("../images/prettyPhoto/dark_rounded/sprite.png") -31px -26px no-repeat;cursor:pointer}
|
||||
div.dark_rounded .pp_expand:hover{background:url("../images/prettyPhoto/dark_rounded/sprite.png") -31px -47px no-repeat;cursor:pointer}
|
||||
div.dark_rounded .pp_contract{background:url("../images/prettyPhoto/dark_rounded/sprite.png") 0 -26px no-repeat;cursor:pointer}
|
||||
div.dark_rounded .pp_contract:hover{background:url("../images/prettyPhoto/dark_rounded/sprite.png") 0 -47px no-repeat;cursor:pointer}
|
||||
div.dark_rounded .pp_close{width:75px;height:22px;background:url("../images/prettyPhoto/dark_rounded/sprite.png") -1px -1px no-repeat;cursor:pointer}
|
||||
div.dark_rounded .pp_description{margin-right:85px;color:#fff}
|
||||
div.dark_rounded .pp_nav .pp_play{background:url("../images/prettyPhoto/dark_rounded/sprite.png") -1px -100px no-repeat;height:15px;width:14px}
|
||||
div.dark_rounded .pp_nav .pp_pause{background:url("../images/prettyPhoto/dark_rounded/sprite.png") -24px -100px no-repeat;height:15px;width:14px}
|
||||
div.dark_rounded .pp_arrow_previous{background:url("../images/prettyPhoto/dark_rounded/sprite.png") 0 -71px no-repeat}
|
||||
div.dark_rounded .pp_arrow_next{background:url("../images/prettyPhoto/dark_rounded/sprite.png") -22px -71px no-repeat}
|
||||
div.dark_rounded .pp_bottom .pp_left{background:url("../images/prettyPhoto/dark_rounded/sprite.png") -88px -80px no-repeat}
|
||||
div.dark_rounded .pp_bottom .pp_right{background:url("../images/prettyPhoto/dark_rounded/sprite.png") -110px -80px no-repeat}
|
||||
div.dark_rounded .pp_loaderIcon{background:url("../images/prettyPhoto/dark_rounded/loader.gif") center center no-repeat}
|
||||
div.dark_square .pp_left,div.dark_square .pp_middle,div.dark_square .pp_right,div.dark_square .pp_content{background:#000}
|
||||
div.dark_square .pp_description{color:#fff;margin:0 85px 0 0}
|
||||
div.dark_square .pp_loaderIcon{background:url("../images/prettyPhoto/dark_square/loader.gif") center center no-repeat}
|
||||
div.dark_square .pp_expand{background:url("../images/prettyPhoto/dark_square/sprite.png") -31px -26px no-repeat;cursor:pointer}
|
||||
div.dark_square .pp_expand:hover{background:url("../images/prettyPhoto/dark_square/sprite.png") -31px -47px no-repeat;cursor:pointer}
|
||||
div.dark_square .pp_contract{background:url("../images/prettyPhoto/dark_square/sprite.png") 0 -26px no-repeat;cursor:pointer}
|
||||
div.dark_square .pp_contract:hover{background:url("../images/prettyPhoto/dark_square/sprite.png") 0 -47px no-repeat;cursor:pointer}
|
||||
div.dark_square .pp_close{width:75px;height:22px;background:url("../images/prettyPhoto/dark_square/sprite.png") -1px -1px no-repeat;cursor:pointer}
|
||||
div.dark_square .pp_nav{clear:none}
|
||||
div.dark_square .pp_nav .pp_play{background:url("../images/prettyPhoto/dark_square/sprite.png") -1px -100px no-repeat;height:15px;width:14px}
|
||||
div.dark_square .pp_nav .pp_pause{background:url("../images/prettyPhoto/dark_square/sprite.png") -24px -100px no-repeat;height:15px;width:14px}
|
||||
div.dark_square .pp_arrow_previous{background:url("../images/prettyPhoto/dark_square/sprite.png") 0 -71px no-repeat}
|
||||
div.dark_square .pp_arrow_next{background:url("../images/prettyPhoto/dark_square/sprite.png") -22px -71px no-repeat}
|
||||
div.dark_square .pp_next:hover{background:url("../images/prettyPhoto/dark_square/btnNext.png") center right no-repeat;cursor:pointer}
|
||||
div.dark_square .pp_previous:hover{background:url("../images/prettyPhoto/dark_square/btnPrevious.png") center left no-repeat;cursor:pointer}
|
||||
div.light_square .pp_expand{background:url("../images/prettyPhoto/light_square/sprite.png") -31px -26px no-repeat;cursor:pointer}
|
||||
div.light_square .pp_expand:hover{background:url("../images/prettyPhoto/light_square/sprite.png") -31px -47px no-repeat;cursor:pointer}
|
||||
div.light_square .pp_contract{background:url("../images/prettyPhoto/light_square/sprite.png") 0 -26px no-repeat;cursor:pointer}
|
||||
div.light_square .pp_contract:hover{background:url("../images/prettyPhoto/light_square/sprite.png") 0 -47px no-repeat;cursor:pointer}
|
||||
div.light_square .pp_close{width:75px;height:22px;background:url("../images/prettyPhoto/light_square/sprite.png") -1px -1px no-repeat;cursor:pointer}
|
||||
div.light_square .pp_nav .pp_play{background:url("../images/prettyPhoto/light_square/sprite.png") -1px -100px no-repeat;height:15px;width:14px}
|
||||
div.light_square .pp_nav .pp_pause{background:url("../images/prettyPhoto/light_square/sprite.png") -24px -100px no-repeat;height:15px;width:14px}
|
||||
div.light_square .pp_arrow_previous{background:url("../images/prettyPhoto/light_square/sprite.png") 0 -71px no-repeat}
|
||||
div.light_square .pp_arrow_next{background:url("../images/prettyPhoto/light_square/sprite.png") -22px -71px no-repeat}
|
||||
div.light_square .pp_next:hover{background:url("../images/prettyPhoto/light_square/btnNext.png") center right no-repeat;cursor:pointer}
|
||||
div.light_square .pp_previous:hover{background:url("../images/prettyPhoto/light_square/btnPrevious.png") center left no-repeat;cursor:pointer}
|
||||
div.facebook .pp_top .pp_left{background:url("../images/prettyPhoto/facebook/sprite.png") -88px -53px no-repeat}
|
||||
div.facebook .pp_top .pp_middle{background:url("../images/prettyPhoto/facebook/contentPatternTop.png") top left repeat-x}
|
||||
div.facebook .pp_top .pp_right{background:url("../images/prettyPhoto/facebook/sprite.png") -110px -53px no-repeat}
|
||||
div.facebook .pp_content_container .pp_left{background:url("../images/prettyPhoto/facebook/contentPatternLeft.png") top left repeat-y}
|
||||
div.facebook .pp_content_container .pp_right{background:url("../images/prettyPhoto/facebook/contentPatternRight.png") top right repeat-y}
|
||||
div.facebook .pp_expand{background:url("../images/prettyPhoto/facebook/sprite.png") -31px -26px no-repeat;cursor:pointer}
|
||||
div.facebook .pp_expand:hover{background:url("../images/prettyPhoto/facebook/sprite.png") -31px -47px no-repeat;cursor:pointer}
|
||||
div.facebook .pp_contract{background:url("../images/prettyPhoto/facebook/sprite.png") 0 -26px no-repeat;cursor:pointer}
|
||||
div.facebook .pp_contract:hover{background:url("../images/prettyPhoto/facebook/sprite.png") 0 -47px no-repeat;cursor:pointer}
|
||||
div.facebook .pp_close{width:22px;height:22px;background:url("../images/prettyPhoto/facebook/sprite.png") -1px -1px no-repeat;cursor:pointer}
|
||||
div.facebook .pp_description{margin:0 37px 0 0}
|
||||
div.facebook .pp_loaderIcon{background:url("../images/prettyPhoto/facebook/loader.gif") center center no-repeat}
|
||||
div.facebook .pp_arrow_previous{background:url("../images/prettyPhoto/facebook/sprite.png") 0 -71px no-repeat;height:22px;margin-top:0;width:22px}
|
||||
div.facebook .pp_arrow_previous.disabled{background-position:0 -96px;cursor:default}
|
||||
div.facebook .pp_arrow_next{background:url("../images/prettyPhoto/facebook/sprite.png") -32px -71px no-repeat;height:22px;margin-top:0;width:22px}
|
||||
div.facebook .pp_arrow_next.disabled{background-position:-32px -96px;cursor:default}
|
||||
div.facebook .pp_nav{margin-top:0}
|
||||
div.facebook .pp_nav p{font-size:15px;padding:0 3px 0 4px}
|
||||
div.facebook .pp_nav .pp_play{background:url("../images/prettyPhoto/facebook/sprite.png") -1px -123px no-repeat;height:22px;width:22px}
|
||||
div.facebook .pp_nav .pp_pause{background:url("../images/prettyPhoto/facebook/sprite.png") -32px -123px no-repeat;height:22px;width:22px}
|
||||
div.facebook .pp_next:hover{background:url("../images/prettyPhoto/facebook/btnNext.png") center right no-repeat;cursor:pointer}
|
||||
div.facebook .pp_previous:hover{background:url("../images/prettyPhoto/facebook/btnPrevious.png") center left no-repeat;cursor:pointer}
|
||||
div.facebook .pp_bottom .pp_left{background:url("../images/prettyPhoto/facebook/sprite.png") -88px -80px no-repeat}
|
||||
div.facebook .pp_bottom .pp_middle{background:url("../images/prettyPhoto/facebook/contentPatternBottom.png") top left repeat-x}
|
||||
div.facebook .pp_bottom .pp_right{background:url("../images/prettyPhoto/facebook/sprite.png") -110px -80px no-repeat}
|
||||
div.pp_pic_holder a:focus{outline:none}
|
||||
div.pp_overlay{background:#000;display:none;left:0;position:absolute;top:0;width:100%;z-index:9500}
|
||||
div.pp_pic_holder{display:none;position:absolute;width:100px;z-index:10000}
|
||||
.pp_content{height:40px;min-width:40px}
|
||||
* html .pp_content{width:40px}
|
||||
.pp_content_container{position:relative;text-align:left;width:100%}
|
||||
.pp_content_container .pp_left{padding-left:20px}
|
||||
.pp_content_container .pp_right{padding-right:20px}
|
||||
.pp_content_container .pp_details{float:left;margin:10px 0 2px}
|
||||
.pp_description{display:none;margin:0}
|
||||
.pp_social{float:left;margin:0}
|
||||
.pp_social .facebook{float:left;margin-left:5px;width:55px;overflow:hidden}
|
||||
.pp_social .twitter{float:left}
|
||||
.pp_nav{clear:right;float:left;margin:3px 10px 0 0}
|
||||
.pp_nav p{float:left;white-space:nowrap;margin:2px 4px}
|
||||
.pp_nav .pp_play,.pp_nav .pp_pause{float:left;margin-right:4px;text-indent:-10000px}
|
||||
a.pp_arrow_previous,a.pp_arrow_next{display:block;float:left;height:15px;margin-top:3px;overflow:hidden;text-indent:-10000px;width:14px}
|
||||
.pp_hoverContainer{position:absolute;top:0;width:100%;z-index:2000}
|
||||
.pp_gallery{display:none;left:50%;margin-top:-50px;position:absolute;z-index:10000}
|
||||
.pp_gallery div{float:left;overflow:hidden;position:relative}
|
||||
.pp_gallery ul{float:left;height:35px;position:relative;white-space:nowrap;margin:0 0 0 5px;padding:0}
|
||||
.pp_gallery ul a{border:1px rgba(0,0,0,0.5) solid;display:block;float:left;height:33px;overflow:hidden}
|
||||
.pp_gallery ul a img{border:0}
|
||||
.pp_gallery li{display:block;float:left;margin:0 5px 0 0;padding:0}
|
||||
.pp_gallery li.default a{background:url("../images/prettyPhoto/facebook/default_thumbnail.gif") 0 0 no-repeat;display:block;height:33px;width:50px}
|
||||
.pp_gallery .pp_arrow_previous,.pp_gallery .pp_arrow_next{margin-top:7px!important}
|
||||
a.pp_next{background:url("../images/prettyPhoto/light_rounded/btnNext.png") 10000px 10000px no-repeat;display:block;float:right;height:100%;text-indent:-10000px;width:49%}
|
||||
a.pp_previous{background:url("../images/prettyPhoto/light_rounded/btnNext.png") 10000px 10000px no-repeat;display:block;float:left;height:100%;text-indent:-10000px;width:49%}
|
||||
a.pp_expand,a.pp_contract{cursor:pointer;display:none;height:20px;position:absolute;right:30px;text-indent:-10000px;top:10px;width:20px;z-index:20000}
|
||||
a.pp_close{position:absolute;right:0;top:0;display:block;line-height:22px;text-indent:-10000px}
|
||||
.pp_loaderIcon{display:block;height:24px;left:50%;position:absolute;top:50%;width:24px;margin:-12px 0 0 -12px}
|
||||
#pp_full_res{line-height:1!important}
|
||||
#pp_full_res .pp_inline{text-align:left}
|
||||
#pp_full_res .pp_inline p{margin:0 0 15px}
|
||||
div.ppt{color:#fff;display:none;font-size:17px;z-index:9999;margin:0 0 5px 15px}
|
||||
div.pp_default .pp_content,div.light_rounded .pp_content{background-color:#fff}
|
||||
div.pp_default #pp_full_res .pp_inline,div.light_rounded .pp_content .ppt,div.light_rounded #pp_full_res .pp_inline,div.light_square .pp_content .ppt,div.light_square #pp_full_res .pp_inline,div.facebook .pp_content .ppt,div.facebook #pp_full_res .pp_inline{color:#000}
|
||||
div.pp_default .pp_gallery ul li a:hover,div.pp_default .pp_gallery ul li.selected a,.pp_gallery ul a:hover,.pp_gallery li.selected a{border-color:#fff}
|
||||
div.pp_default .pp_details,div.light_rounded .pp_details,div.dark_rounded .pp_details,div.dark_square .pp_details,div.light_square .pp_details,div.facebook .pp_details{position:relative}
|
||||
div.light_rounded .pp_top .pp_middle,div.light_rounded .pp_content_container .pp_left,div.light_rounded .pp_content_container .pp_right,div.light_rounded .pp_bottom .pp_middle,div.light_square .pp_left,div.light_square .pp_middle,div.light_square .pp_right,div.light_square .pp_content,div.facebook .pp_content{background:#fff}
|
||||
div.light_rounded .pp_description,div.light_square .pp_description{margin-right:85px}
|
||||
div.light_rounded .pp_gallery a.pp_arrow_previous,div.light_rounded .pp_gallery a.pp_arrow_next,div.dark_rounded .pp_gallery a.pp_arrow_previous,div.dark_rounded .pp_gallery a.pp_arrow_next,div.dark_square .pp_gallery a.pp_arrow_previous,div.dark_square .pp_gallery a.pp_arrow_next,div.light_square .pp_gallery a.pp_arrow_previous,div.light_square .pp_gallery a.pp_arrow_next{margin-top:12px!important}
|
||||
div.light_rounded .pp_arrow_previous.disabled,div.dark_rounded .pp_arrow_previous.disabled,div.dark_square .pp_arrow_previous.disabled,div.light_square .pp_arrow_previous.disabled{background-position:0 -87px;cursor:default}
|
||||
div.light_rounded .pp_arrow_next.disabled,div.dark_rounded .pp_arrow_next.disabled,div.dark_square .pp_arrow_next.disabled,div.light_square .pp_arrow_next.disabled{background-position:-22px -87px;cursor:default}
|
||||
div.light_rounded .pp_loaderIcon,div.light_square .pp_loaderIcon{background:url("../images/prettyPhoto/light_rounded/loader.gif") center center no-repeat}
|
||||
div.dark_rounded .pp_top .pp_middle,div.dark_rounded .pp_content,div.dark_rounded .pp_bottom .pp_middle{background:url("../images/prettyPhoto/dark_rounded/contentPattern.png") top left repeat}
|
||||
div.dark_rounded .currentTextHolder,div.dark_square .currentTextHolder{color:#c4c4c4}
|
||||
div.dark_rounded #pp_full_res .pp_inline,div.dark_square #pp_full_res .pp_inline{color:#fff}
|
||||
.pp_top,.pp_bottom{height:20px;position:relative}
|
||||
* html .pp_top,* html .pp_bottom{padding:0 20px}
|
||||
.pp_top .pp_left,.pp_bottom .pp_left{height:20px;left:0;position:absolute;width:20px}
|
||||
.pp_top .pp_middle,.pp_bottom .pp_middle{height:20px;left:20px;position:absolute;right:20px}
|
||||
* html .pp_top .pp_middle,* html .pp_bottom .pp_middle{left:0;position:static}
|
||||
.pp_top .pp_right,.pp_bottom .pp_right{height:20px;left:auto;position:absolute;right:0;top:0;width:20px}
|
||||
.pp_fade,.pp_gallery li.default a img{display:none}
|
1138
public/assets/css/responsive.css
Normal file
1138
public/assets/css/responsive.css
Normal file
File diff suppressed because it is too large
Load Diff
4636
public/assets/css/shortcodes.css
Normal file
4636
public/assets/css/shortcodes.css
Normal file
File diff suppressed because it is too large
Load Diff
119
public/assets/css/slick.css
Normal file
119
public/assets/css/slick.css
Normal file
@ -0,0 +1,119 @@
|
||||
/* Slider */
|
||||
.slick-slider
|
||||
{
|
||||
position: relative;
|
||||
|
||||
display: block;
|
||||
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
|
||||
{
|
||||
position: relative;
|
||||
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.slick-list:focus
|
||||
{
|
||||
outline: none;
|
||||
}
|
||||
.slick-list.dragging
|
||||
{
|
||||
cursor: pointer;
|
||||
cursor: hand;
|
||||
}
|
||||
|
||||
.slick-slider .slick-track,
|
||||
.slick-slider .slick-list
|
||||
{
|
||||
-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
|
||||
{
|
||||
position: relative;
|
||||
top: 0;
|
||||
left: 0;
|
||||
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
.slick-track:before,
|
||||
.slick-track:after
|
||||
{
|
||||
display: table;
|
||||
|
||||
content: '';
|
||||
}
|
||||
.slick-track:after
|
||||
{
|
||||
clear: both;
|
||||
}
|
||||
.slick-loading .slick-track
|
||||
{
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.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-loading .slick-slide
|
||||
{
|
||||
visibility: hidden;
|
||||
}
|
||||
.slick-vertical .slick-slide
|
||||
{
|
||||
display: block;
|
||||
|
||||
height: auto;
|
||||
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
.slick-arrow.slick-hidden {
|
||||
display: none;
|
||||
}
|
584
public/assets/css/slider.css
Normal file
584
public/assets/css/slider.css
Normal file
@ -0,0 +1,584 @@
|
||||
/*------------------------------------------------------------------------------*/
|
||||
/* Slider button
|
||||
/*------------------------------------------------------------------------------*/
|
||||
|
||||
/* slick-arrow */
|
||||
.banner_slider.slick-slider .slick-prev, .banner_slider.slick-slider .slick-next{
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
padding-right: 3px;
|
||||
text-align: center;
|
||||
position: absolute;
|
||||
display: block;
|
||||
z-index: 1;
|
||||
margin: 0 20px;
|
||||
background-color: transparent;
|
||||
border-radius: 50%;
|
||||
}
|
||||
.banner_slider.slick-slider .slick-next {
|
||||
right: 0;
|
||||
left: auto;
|
||||
padding-right: 0;
|
||||
padding-left: 3px;
|
||||
}
|
||||
.banner_slider.slick-slider:hover .slick-prev, .banner_slider.slick-slider:hover .slick-next{
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
.banner_slider.slick-slider .slick-prev:hover, .banner_slider.slick-slider .slick-next:hover {
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
.banner_slider.slick-slider .slick-prev:before, .banner_slider.slick-slider .slick-next:before {
|
||||
font-family: 'FontAwesome';
|
||||
font-size: 18px;
|
||||
opacity: 1;
|
||||
color: #fff;
|
||||
font-weight: bold;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
.banner_slider.slick-slider .slick-prev:before {
|
||||
content: "\f053";
|
||||
}
|
||||
.banner_slider.slick-slider .slick-next:before {
|
||||
content: "\f054";
|
||||
}
|
||||
|
||||
/* slick-dots */
|
||||
.slick-dotted { border: 0; outline: 0; text-decoration: none; }
|
||||
.banner_slider.slick-dotted .slick-dots {
|
||||
display: none;
|
||||
position: absolute;
|
||||
bottom: 3%;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
margin: 0 auto;
|
||||
z-index: 1;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
list-style: none;
|
||||
text-align: left!important;
|
||||
transition: all .5s ease-in-out;
|
||||
}
|
||||
.banner_slider.slick-dotted .slick-dots li{
|
||||
display: inline-block;
|
||||
list-style: none;
|
||||
line-height: 0;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all .5s ease-in-out;
|
||||
}
|
||||
.banner_slider.slick-dotted:hover .slick-dots li{
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
transition: all .5s ease-in-out;
|
||||
}
|
||||
.banner_slider.slick-dotted .slick-dots li button:before {
|
||||
position: absolute;
|
||||
content: "";
|
||||
left: 0;
|
||||
right: 0;
|
||||
top: 3px;
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
text-align: center;
|
||||
border-radius: 50%;
|
||||
margin: 0 auto;
|
||||
content: unset;
|
||||
transition: all .5s ease-in-out;
|
||||
}
|
||||
.banner_slider .slick-dots li button {
|
||||
display: inline-block;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
border:0px solid;
|
||||
border-color: transparent;
|
||||
border-radius: 50%;
|
||||
cursor: pointer;
|
||||
margin: 6px;
|
||||
position: relative;
|
||||
background-color: var(--base-skin);
|
||||
-webkit-transition: all 300ms ease;
|
||||
transition: all 300ms ease;
|
||||
font-size: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.slick-dots li.slick-active button {
|
||||
background: transparent;
|
||||
text-align: left;
|
||||
background-color: var(--base-skin);
|
||||
border:0px solid;
|
||||
border-color: transparent;
|
||||
width:42px;
|
||||
height: 12px;
|
||||
border-radius: 2rem;
|
||||
}
|
||||
/*------------------------------------------------------------------------------*/
|
||||
/* Slider img
|
||||
/*------------------------------------------------------------------------------*/
|
||||
|
||||
.slide {
|
||||
align-items: center;
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
.slide .slide_img {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
overflow: hidden;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
}
|
||||
.slide .slide_img img {
|
||||
opacity: 1 ;
|
||||
-webkit-animation-duration: 3s;
|
||||
animation-duration: 3s;
|
||||
transition: all 1s ease;
|
||||
}
|
||||
.banner_slider.grey-shadow{position: relative;}
|
||||
.banner_slider.grey-shadow:before {
|
||||
position: absolute;
|
||||
content: "";
|
||||
bottom: 0px;
|
||||
left:-500px;
|
||||
right:0px;
|
||||
width: 2600px;
|
||||
height:50%;
|
||||
-webkit-transition: all 0.45s ease-in-out;
|
||||
-moz-transition: all 0.45s ease-in-out;
|
||||
-ms-transition: all 0.45s ease-in-out;
|
||||
transition: all 0.45s ease-in-out;
|
||||
background-color: #f8f8f8;
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
z-index: -40;
|
||||
}
|
||||
.slide-shap-img {position: relative;}
|
||||
.slide-shap-img img {
|
||||
position: absolute;
|
||||
top: 85px;
|
||||
right: -87px;
|
||||
-webkit-animation:spin 20s linear infinite;
|
||||
-moz-animation:spin 20s linear infinite;
|
||||
animation:spin 20s linear infinite;
|
||||
}
|
||||
|
||||
/*------------------------------------------------------------------------------*/
|
||||
/* Slider Overlay
|
||||
/*------------------------------------------------------------------------------*/
|
||||
|
||||
.slider-overlay {
|
||||
content: '';
|
||||
background-color: rgba(42, 51, 78, 0.4);
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
/*------------------------------------------------------------------------------*/
|
||||
/* Slider content
|
||||
/*------------------------------------------------------------------------------*/
|
||||
|
||||
.banner_slider .slide .slide__content .container{padding-left: 12px;padding-right: 12px;}
|
||||
.slide .slide__content {
|
||||
position: relative;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
z-index: 2;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
.slide .slide__content--headings {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
transition: all 0.5s ease;
|
||||
align-items: center;
|
||||
padding-bottom: 25px;
|
||||
padding-left: 3px;
|
||||
}
|
||||
.slide .slide__content--headings h2 {
|
||||
font-size: 60px;
|
||||
line-height: 70px;
|
||||
font-weight: 600;
|
||||
text-transform: capitalize;
|
||||
font-family: var(--base-headingfont);
|
||||
margin-bottom: 0;
|
||||
|
||||
}
|
||||
.slide .slide__content--headings h3 {
|
||||
font-size: 16px;
|
||||
line-height: 26px;
|
||||
letter-spacing: 0px;
|
||||
font-weight: 500;
|
||||
position: relative;
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 10px;
|
||||
font-family: var(--base-bodyfont);
|
||||
}
|
||||
.slide .slide__content--headings p {
|
||||
color: rgb(255 255 255 / 60%);
|
||||
line-height: 28px;
|
||||
font-weight: 400;
|
||||
font-size: 16px;
|
||||
}
|
||||
.slide .slide__content--headings .featured-imagebox
|
||||
.featured-content .featured-title h3 {
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
|
||||
/*------------------------------------------------------------------------------*/
|
||||
/* IMAGE ZOOM
|
||||
/*------------------------------------------------------------------------------*/
|
||||
.banner_slider .slide_img {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-size: cover;
|
||||
}
|
||||
.banner_video_slider .slide_video {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-size: cover;
|
||||
object-fit: cover;
|
||||
}
|
||||
.slick-active .slide_img {
|
||||
-webkit-animation-delay: 24s;
|
||||
-moz-animation-delay: 24s;
|
||||
-o-animation-delay: 24s;
|
||||
-ms-animation-delay: 24s;
|
||||
animation-delay: 24s;
|
||||
-webkit-backface-visibility: hidden;
|
||||
}
|
||||
.fullscreen-bg {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
overflow: hidden;
|
||||
z-index: -100;
|
||||
}
|
||||
.fullscreen-bg__video {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
/*------------------------------------------------------------------------------*/
|
||||
/* BANNER SLIDER
|
||||
/*------------------------------------------------------------------------------*/
|
||||
|
||||
/*banner_slider_1*/
|
||||
.banner_slider_1 .slide.s1 .slide__content {
|
||||
flex-direction: row;
|
||||
align-items: flex-end;
|
||||
}
|
||||
.banner_slider_1 .slide { height: 733px ; }
|
||||
.banner_slider_1 .slide_img:before{
|
||||
position: absolute;
|
||||
content: "";
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 1;
|
||||
-webkit-transition: all 0.45s ease-in-out;
|
||||
-moz-transition: all 0.45s ease-in-out;
|
||||
-ms-transition: all 0.45s ease-in-out;
|
||||
transition: all 0.45s ease-in-out;
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background-color: rgba(0, 0, 0, 0.35);
|
||||
}
|
||||
.banner_slider_1 .slide.s3 .slide_img:before{
|
||||
position: absolute;
|
||||
content: "";
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 1;
|
||||
-webkit-transition: all 0.45s ease-in-out;
|
||||
-moz-transition: all 0.45s ease-in-out;
|
||||
-ms-transition: all 0.45s ease-in-out;
|
||||
transition: all 0.45s ease-in-out;
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: linear-gradient(90deg, transparent 25%, rgba(0,0,0,.7) 60%);
|
||||
}
|
||||
.banner_slider_1 .slide .slide__content--headings h2 { font-size: 64px; line-height: 74px; font-weight: 700; }
|
||||
.banner_slider_1 .slide.s1 .slide__content--headings { padding: 36px 0;}
|
||||
.banner_slider_1 .slide.s2 .slide__content--headings { padding: 0px 0 25px 3px;}
|
||||
.banner_slider_1 .slide.s3 .slide__content--headings { padding: 0px 0 25px 3px;}
|
||||
|
||||
/*banner_slider_2*/
|
||||
.banner_slider_2 .slide { height: auto ; }
|
||||
.banner_slider_2 .slide_img { height: 500px; position: relative;}
|
||||
.banner_slider_2 .slide__content{
|
||||
justify-content: unset;
|
||||
height: auto;
|
||||
padding: 70px 0 20px;
|
||||
}
|
||||
|
||||
/*banner_slider_3*/
|
||||
.banner_slider_3 .slide_img { background-position: center center; }
|
||||
.banner_slider_3 .slide { position: relative; height: 600px ; }
|
||||
.banner_slider_3 .slide:before {
|
||||
content: '';
|
||||
background-color: rgba(42 ,51, 78, 1);
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 854px;
|
||||
height: 600px;
|
||||
opacity: 1;
|
||||
z-index: 1;
|
||||
}
|
||||
.banner_slider_3 .slide__content .slide__content--headings { position: relative; }
|
||||
.banner_slider_3 .slide__content .slider_fid {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
}
|
||||
.banner_slider_3 .slide__content--headings h2 i { padding-right: 12px; }
|
||||
.banner_slider_3 .slide__content--headings h2 { font-size: 64px; }
|
||||
.banner_slider_3 .slide__content .slider_play_video {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
}
|
||||
.banner_slider_3 .slide__content .slide__content--headings h2 span{ position: relative; }
|
||||
.banner_slider_3 .slide__content .slide__content--headings h2 span:before {
|
||||
content: '';
|
||||
background-color: var(--base-skin);
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 16px;
|
||||
bottom: 22px;
|
||||
left: 0;
|
||||
opacity: 0.28;
|
||||
}
|
||||
.banner_slider_3 .slide__content .slide__content--headings a.ttm-btn.ttm-btn-size-md:hover {
|
||||
color: var(--base-dark);
|
||||
background-color: var(--base-white);
|
||||
}
|
||||
.banner_slider_3 .slide .slide__content--headings p { margin-top: 15px; }
|
||||
|
||||
/*------------------------------------------------------------------------------*/
|
||||
/* banner_responsive
|
||||
/*------------------------------------------------------------------------------*/
|
||||
|
||||
@media (max-width: 1800px) {
|
||||
.banner_slider_1.banner_slider_wide{
|
||||
max-width: 88%;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.banner_slider_1 .slide .slide__content { flex-direction: column; align-items: center; }
|
||||
.banner_slider_1 .slide.s1 .slide_img { background-size: cover !important; }
|
||||
|
||||
}
|
||||
|
||||
@media (max-width: 1400px) {
|
||||
.banner_slider_1.banner_slider_wide{
|
||||
max-width: 100%;
|
||||
margin: 0 auto;
|
||||
}
|
||||
}
|
||||
|
||||
/*@media only screen and (max-width: 1199px) {
|
||||
|
||||
.lg-hide { display: none ; }
|
||||
.banner_slider_1.banner_slider_wide {
|
||||
max-width: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.site-description h2,
|
||||
.site-description h2:before { display: none; }
|
||||
|
||||
.slide .ttm-btn {
|
||||
font-size: 14px;
|
||||
}
|
||||
.slide .ttm-btn.ttm-btn-size-md:not(.btn-inline) {
|
||||
padding: 12px 21px 12px 21px;
|
||||
}
|
||||
.slide .ttm-icon.ttm-icon_element-size-xs {
|
||||
height: 36px;
|
||||
width: 36px;
|
||||
line-height: 36px;
|
||||
}
|
||||
.slide .fbox { bottom: 45%; }
|
||||
.slide .fbox {
|
||||
padding: 25px 20px;
|
||||
color: var(--base-white);
|
||||
width: 200px;
|
||||
height: 150px;
|
||||
}
|
||||
.slide .fbox h6 { line-height: 40px; font-size: 30px; }
|
||||
.overlay_banner_header .slide .slide__content { padding-top: 0; }
|
||||
}*/
|
||||
|
||||
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
|
||||
.banner_slider_3 .slide:before { width: 40%; height: 100%; }
|
||||
.banner_slider_1 .slide { height: 680px; }
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 992px) and (max-width: 1199px) {
|
||||
|
||||
.slide .slide__content--headings {
|
||||
padding-bottom: 8px;
|
||||
text-align: center!important ;
|
||||
}
|
||||
.banner_slider_2 .slide .slide__content--headings {
|
||||
text-align: left !important ;
|
||||
padding-bottom: 28px ;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1199px){
|
||||
|
||||
.banner_slider .slide { height: 680px !important; }
|
||||
.banner_slider_2 .slide { height: auto !important; }
|
||||
.banner_slider_3 .slide__content .slider_fid ,
|
||||
.banner_slider_3 .slide__content .slider_play_video { display: none !important; }
|
||||
|
||||
.banner_slider_1 .slide.s2 .slide__content--headings { padding: 25px 0 25px 3px;}
|
||||
.banner_slider_1 .slide.s3 .slide__content--headings { padding: 18px 0 25px 3px;}
|
||||
.banner_slider_3 .slide.s1 .slide__content--headings { padding-bottom: 0!important; }
|
||||
.banner_slider_3 .slide.s2 .slide__content--headings { padding-bottom: 8px !important; }
|
||||
.banner_slider_3 .slide:before { display: none; }
|
||||
|
||||
.banner_slider.slick-slider .slick-prev,
|
||||
.banner_slider.slick-slider .slick-next { display: none !important; }
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 991px){
|
||||
.md-hide { display: none ; }
|
||||
.banner_slider_2 .slide { height: auto !important; }
|
||||
.slide .slide__content--headings h2 { font-size: 60px !important; line-height: 70px !important;}
|
||||
.slide .slide__content--headings { padding-bottom: 8px; text-align: center!important;}
|
||||
.banner_slider_2 .slide .slide__content--headings { padding-bottom: 0px; text-align: center!important;}
|
||||
.slide__content .featured-imagebox{display: none;}
|
||||
.slide__content--headings br { display: none; }
|
||||
.banner_slider_3 .slide__content .slide__content--headings h2 span:before { bottom: 20px; }
|
||||
.banner_slider .slide {height: 580px !important;}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 767px){
|
||||
.banner_slider_2 .slide { height: auto !important; }
|
||||
.sm-hide,.slide .slide__content--headings h3:before { display: none !important; }
|
||||
.slide .slide__content--headings { padding-bottom: 8px; text-align: center!important;}
|
||||
.slide .slide__content--headings > h3 { font-size: 14px; }
|
||||
.slide .slide__content--headings h2 { font-size: 40px !important; line-height: 50px !important; }
|
||||
.banner_slider_3 .slide__content .slide__content--headings h2 span:before { bottom: 10px; }
|
||||
.banner_slider .slide {height: 480px !important;}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 600px){
|
||||
.banner_slider .slide { height: 560px !important; }
|
||||
.banner_slider_2 .slide { height: auto !important; }
|
||||
.slide .ttm-btn.ttm-btn-size-md:not(.btn-inline) { padding: 10px 22px;}
|
||||
.slide .slide__content--headings p { display: none; }
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 575px){
|
||||
.banner_slider .slide { height: 460px !important; }
|
||||
.banner_slider_2 .slide { height: auto !important; }
|
||||
.slide .slide__content--headings { padding-bottom: 8px; }
|
||||
.slide .slide__content--headings{text-align: center !important;display: block!important;}
|
||||
.slide .slide__content--headings h2 { font-size: 40px !important; line-height: 50px !important; }
|
||||
.banner_slider_3 .slide__content .slide__content--headings h2 span:before { display: none; }
|
||||
.banner_slider_1 .slide.s1 .slide__content--headings { padding: 15px 0 30px; }
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 460px){
|
||||
.slide-btn-2{ margin-top: 25px; display: block!important; }
|
||||
.slide .slide__content--headings h2 { font-size: 30px !important; line-height: 40px !important; }
|
||||
.banner_slider .slide {height: 400px !important;}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 400px){
|
||||
.banner_slider .slide {height: 340px !important; }
|
||||
.banner_slider_2 .slide { height: auto !important; }
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* SLIDER HOMEPAGE 1 */
|
||||
|
||||
.banner_slider.banner_slider_1.slick-dotted .slick-dots { display: none !important; }
|
||||
|
||||
.banner_slider.banner_slider_1.slick-slider .slick-prev:hover,
|
||||
.banner_slider.banner_slider_1.slick-slider .slick-next:hover {
|
||||
background-color: transparent !important;
|
||||
}
|
||||
.banner_slider.banner_slider_1.slick-slider .slick-prev:hover:before,
|
||||
.banner_slider.banner_slider_1.slick-slider .slick-next:hover:before {
|
||||
color: var(--base-skin) !important;
|
||||
}
|
||||
|
||||
/* SLIDER HOMEPAGE 2 */
|
||||
|
||||
.banner_slider.banner_slider_2.slick-slider .slick-prev,
|
||||
.banner_slider.banner_slider_2.slick-slider .slick-next { display: none !important; }
|
||||
.banner_slider.banner_slider_2.slick-dotted .slick-dots { display: inline-block !important; }
|
||||
|
||||
/* SLIDER HOMEPAGE 3 */
|
||||
|
||||
.banner_slider.banner_slider_3.slick-dotted .slick-dots { display: none !important; }
|
||||
.banner_slider.banner_slider_3.slick-slider .slick-prev,
|
||||
.banner_slider.banner_slider_3.slick-slider .slick-next {
|
||||
width: 40px;
|
||||
height: 50px;
|
||||
line-height: 50px;
|
||||
background-color: rgba(51, 214, 135, 0.5);
|
||||
margin: 0 15px;
|
||||
border-radius: 0;
|
||||
}
|
||||
.banner_slider.banner_slider_3.slick-slider .slick-prev:hover,
|
||||
.banner_slider.banner_slider_3.slick-slider .slick-next:hover {
|
||||
background-color: rgba(51, 214, 135, 1) !important;
|
||||
}
|
||||
|
||||
|
||||
figure {
|
||||
margin: 0;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
height: 150px;
|
||||
width: 150px;
|
||||
overflow: hidden;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
|
||||
a:is(:hover, :focus) figure::after {
|
||||
opacity: 1;
|
||||
}
|
1081
public/assets/css/themify-icons.css
Normal file
1081
public/assets/css/themify-icons.css
Normal file
File diff suppressed because it is too large
Load Diff
226
public/assets/css/twentytwenty.css
Normal file
226
public/assets/css/twentytwenty.css
Normal file
@ -0,0 +1,226 @@
|
||||
.twenty20{
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.twentytwenty-horizontal .twentytwenty-handle:before, .twentytwenty-horizontal .twentytwenty-handle:after, .twentytwenty-vertical .twentytwenty-handle:before, .twentytwenty-vertical .twentytwenty-handle:after {
|
||||
content: " ";
|
||||
display: block;
|
||||
background: white;
|
||||
position: absolute;
|
||||
z-index: 30;
|
||||
-webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
|
||||
-moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
|
||||
box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5); }
|
||||
|
||||
.twentytwenty-horizontal .twentytwenty-handle:before, .twentytwenty-horizontal .twentytwenty-handle:after {
|
||||
width: 3px;
|
||||
height: 9999px;
|
||||
left: 50%;
|
||||
margin-left: -1.5px; }
|
||||
|
||||
.twentytwenty-vertical .twentytwenty-handle:before, .twentytwenty-vertical .twentytwenty-handle:after {
|
||||
width: 9999px;
|
||||
height: 3px;
|
||||
top: 50%;
|
||||
margin-top: -1.5px; }
|
||||
|
||||
.twentytwenty-overlay {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%; }
|
||||
|
||||
.twentytwenty-overlay {
|
||||
-webkit-transition-duration: 0.5s;
|
||||
-moz-transition-duration: 0.5s;
|
||||
transition-duration: 0.5s; }
|
||||
|
||||
.twentytwenty-before-label, .twentytwenty-after-label {
|
||||
-webkit-transition-property: opacity;
|
||||
-moz-transition-property: opacity;
|
||||
transition-property: opacity; }
|
||||
|
||||
.twentytwenty-before-label, .twentytwenty-after-label {
|
||||
color: white;
|
||||
font-size: 13px;
|
||||
letter-spacing: 0.1em; }
|
||||
|
||||
.twentytwenty-before-label, .twentytwenty-after-label {
|
||||
position: absolute;
|
||||
background: rgba(255, 255, 255, 0.2);
|
||||
line-height: 38px;
|
||||
padding: 0 20px;
|
||||
-webkit-border-radius: 2px;
|
||||
-moz-border-radius: 2px;
|
||||
border-radius: 2px; }
|
||||
|
||||
.twentytwenty-horizontal .twentytwenty-before-label:before, .twentytwenty-horizontal .twentytwenty-after-label:before {
|
||||
|
||||
}
|
||||
|
||||
.twentytwenty-vertical .twentytwenty-before-label:before, .twentytwenty-vertical .twentytwenty-after-label:before {
|
||||
}
|
||||
|
||||
.twentytwenty-left-arrow, .twentytwenty-right-arrow, .twentytwenty-up-arrow, .twentytwenty-down-arrow {
|
||||
width: 0;
|
||||
height: 0;
|
||||
border: 6px inset transparent;
|
||||
position: absolute; }
|
||||
|
||||
.twentytwenty-left-arrow, .twentytwenty-right-arrow {
|
||||
top: 50%;
|
||||
margin-top: -6px; }
|
||||
|
||||
.twentytwenty-up-arrow, .twentytwenty-down-arrow {
|
||||
left: 50%;
|
||||
margin-left: -6px; }
|
||||
|
||||
.twentytwenty-container {
|
||||
-webkit-box-sizing: content-box;
|
||||
-moz-box-sizing: content-box;
|
||||
box-sizing: content-box;
|
||||
z-index: 0;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none; }
|
||||
.twentytwenty-container img {
|
||||
max-width: 100%;
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
display: block; }
|
||||
.twentytwenty-container.active .twentytwenty-overlay, .twentytwenty-container.active :hover.twentytwenty-overlay {
|
||||
background: rgba(0, 0, 0, 0); }
|
||||
.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-before-label,
|
||||
.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-after-label, .twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-before-label,
|
||||
.twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-after-label {
|
||||
opacity: 0; }
|
||||
.twentytwenty-container * {
|
||||
-webkit-box-sizing: content-box;
|
||||
-moz-box-sizing: content-box;
|
||||
box-sizing: content-box; }
|
||||
|
||||
.twentytwenty-before-label {
|
||||
opacity: 0; }
|
||||
.twentytwenty-before-label {
|
||||
}
|
||||
|
||||
.twentytwenty-container.t20-hover.active .twentytwenty-overlay .twentytwenty-before-label,
|
||||
.twentytwenty-container.t20-hover.active .twentytwenty-overlay .twentytwenty-after-label{
|
||||
opacity: 1;
|
||||
}
|
||||
.twentytwenty-after-label {
|
||||
opacity: 0; }
|
||||
.twentytwenty-after-label {
|
||||
}
|
||||
|
||||
.twentytwenty-horizontal .twentytwenty-before-label {
|
||||
left: 1px;
|
||||
bottom: 0px;
|
||||
max-width: 50%;
|
||||
box-sizing: border-box;
|
||||
line-height: inherit;
|
||||
padding: 4px; }
|
||||
|
||||
.twentytwenty-horizontal .twentytwenty-after-label {
|
||||
right: 1px;
|
||||
bottom: 0px;
|
||||
max-width: 50%;
|
||||
box-sizing: border-box;
|
||||
line-height: inherit;
|
||||
padding: 4px; }
|
||||
|
||||
.twentytwenty-vertical .twentytwenty-before-label {
|
||||
top: 1px;
|
||||
line-height: inherit;
|
||||
padding: 6px;
|
||||
box-sizing: border-box;}
|
||||
|
||||
.twentytwenty-vertical .twentytwenty-after-label {
|
||||
bottom: 1px;
|
||||
line-height: inherit;
|
||||
padding: 6px;
|
||||
box-sizing: border-box; }
|
||||
|
||||
.twentytwenty-overlay {
|
||||
-webkit-transition-property: background;
|
||||
-moz-transition-property: background;
|
||||
transition-property: background;
|
||||
background: rgba(0, 0, 0, 0);
|
||||
z-index: 25; }
|
||||
.twentytwenty-overlay:hover {
|
||||
background: rgba(0, 0, 0, 0.5); }
|
||||
.twentytwenty-overlay:hover .twentytwenty-after-label {
|
||||
opacity: 1; }
|
||||
.twentytwenty-overlay:hover .twentytwenty-before-label {
|
||||
opacity: 1; }
|
||||
|
||||
.twentytwenty-before {
|
||||
z-index: 20; }
|
||||
|
||||
.twentytwenty-after {
|
||||
z-index: 10; }
|
||||
|
||||
.twentytwenty-handle {
|
||||
height: 38px;
|
||||
width: 38px;
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
margin-left: -22px;
|
||||
margin-top: -22px;
|
||||
border: 3px solid white;
|
||||
-webkit-border-radius: 1000px;
|
||||
-moz-border-radius: 1000px;
|
||||
border-radius: 1000px;
|
||||
-webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
|
||||
-moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
|
||||
box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
|
||||
z-index: 40;
|
||||
cursor: pointer; }
|
||||
|
||||
.twentytwenty-horizontal .twentytwenty-handle:before {
|
||||
bottom: 50%;
|
||||
margin-bottom: 22px;
|
||||
-webkit-box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
|
||||
-moz-box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
|
||||
box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5); }
|
||||
.twentytwenty-horizontal .twentytwenty-handle:after {
|
||||
top: 50%;
|
||||
margin-top: 22px;
|
||||
-webkit-box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
|
||||
-moz-box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
|
||||
box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5); }
|
||||
|
||||
.twentytwenty-vertical .twentytwenty-handle:before {
|
||||
left: 50%;
|
||||
margin-left: 22px;
|
||||
-webkit-box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
|
||||
-moz-box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
|
||||
box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5); }
|
||||
.twentytwenty-vertical .twentytwenty-handle:after {
|
||||
right: 50%;
|
||||
margin-right: 22px;
|
||||
-webkit-box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
|
||||
-moz-box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
|
||||
box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5); }
|
||||
|
||||
.twentytwenty-left-arrow {
|
||||
border-right: 6px solid white;
|
||||
left: 50%;
|
||||
margin-left: -17px; }
|
||||
|
||||
.twentytwenty-right-arrow {
|
||||
border-left: 6px solid white;
|
||||
right: 50%;
|
||||
margin-right: -17px; }
|
||||
|
||||
.twentytwenty-up-arrow {
|
||||
border-bottom: 6px solid white;
|
||||
top: 50%;
|
||||
margin-top: -17px; }
|
||||
|
||||
.twentytwenty-down-arrow {
|
||||
border-top: 6px solid white;
|
||||
bottom: 50%;
|
||||
margin-bottom: -17px; }
|
Binary file not shown.
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 359 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
public/assets/fonts/fontawesome-webfont-.eot
Normal file
BIN
public/assets/fonts/fontawesome-webfont-.eot
Normal file
Binary file not shown.
BIN
public/assets/fonts/fontawesome-webfont-v=4.7.0.eot
Normal file
BIN
public/assets/fonts/fontawesome-webfont-v=4.7.0.eot
Normal file
Binary file not shown.
2671
public/assets/fonts/fontawesome-webfont-v=4.7.0.svg
Normal file
2671
public/assets/fonts/fontawesome-webfont-v=4.7.0.svg
Normal file
File diff suppressed because it is too large
Load Diff
After Width: | Height: | Size: 434 KiB |
BIN
public/assets/fonts/fontawesome-webfont-v=4.7.0.ttf
Normal file
BIN
public/assets/fonts/fontawesome-webfont-v=4.7.0.ttf
Normal file
Binary file not shown.
BIN
public/assets/fonts/fontawesome-webfont-v=4.7.0.woff
Normal file
BIN
public/assets/fonts/fontawesome-webfont-v=4.7.0.woff
Normal file
Binary file not shown.
BIN
public/assets/fonts/fontawesome-webfont-v=4.7.0.woff2
Normal file
BIN
public/assets/fonts/fontawesome-webfont-v=4.7.0.woff2
Normal file
Binary file not shown.
BIN
public/assets/fonts/fontello-51113876.eot
Normal file
BIN
public/assets/fonts/fontello-51113876.eot
Normal file
Binary file not shown.
42
public/assets/fonts/fontello-51113876.svg
Normal file
42
public/assets/fonts/fontello-51113876.svg
Normal file
@ -0,0 +1,42 @@
|
||||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg">
|
||||
<metadata>Copyright (C) 2022 by original authors @ fontello.com</metadata>
|
||||
<defs>
|
||||
<font id="fontello" horiz-adv-x="1000" >
|
||||
<font-face font-family="fontello" font-weight="400" font-stretch="normal" units-per-em="1000" ascent="850" descent="-150" />
|
||||
<missing-glyph horiz-adv-x="1000" />
|
||||
<glyph glyph-name="ok" unicode="" d="M933 534q0-22-16-38l-404-404-76-76q-16-15-38-15t-38 15l-76 76-202 202q-15 16-15 38t15 38l76 76q16 16 38 16t38-16l164-165 366 367q16 16 38 16t38-16l76-76q16-15 16-38z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="left-dir" unicode="" d="M357 600v-500q0-14-10-25t-26-11-25 11l-250 250q-10 11-10 25t10 25l250 250q11 11 25 11t26-11 10-25z" horiz-adv-x="357.1" />
|
||||
|
||||
<glyph glyph-name="logout" unicode="" d="M912 614l276-266-276-264v177h-413v176h413v177z m-166-512l106-107q-156-146-338-146-217 0-365 143t-149 359q0 135 68 250t184 182 250 66q184 0 349-148l-105-106q-114 104-243 104-149 0-251-104t-103-254q0-140 106-241t247-101q131 0 244 103z" horiz-adv-x="1188" />
|
||||
|
||||
<glyph glyph-name="right-dir" unicode="" d="M321 350q0-14-10-25l-250-250q-11-11-25-11t-25 11-11 25v500q0 15 11 25t25 11 25-11l250-250q10-10 10-25z" horiz-adv-x="357.1" />
|
||||
|
||||
<glyph glyph-name="quote-left-alt" unicode="" d="M911 16l-335 0 0 335 335 334 0-669z m-558 0l-335 0 0 335 335 334 0-669z" horiz-adv-x="928" />
|
||||
|
||||
<glyph glyph-name="ok-circle" unicode="" d="M465 797q184 0 315-131t131-316-131-315-315-132-316 132-131 315 131 316 316 131z m-70-653l348 348-79 79-269-268-126 126-79-78z" horiz-adv-x="928" />
|
||||
|
||||
<glyph glyph-name="ok-circled" unicode="" d="M717 440q0 16-10 26l-51 50q-11 11-25 11t-25-11l-228-227-126 126q-11 11-25 11t-25-11l-51-50q-10-10-10-26 0-15 10-25l202-202q10-10 25-10 15 0 26 10l303 303q10 10 10 25z m140-90q0-117-57-215t-156-156-215-58-216 58-155 156-58 215 58 215 155 156 216 58 215-58 156-156 57-215z" horiz-adv-x="857.1" />
|
||||
|
||||
<glyph glyph-name="share" unicode="" d="M650 200q62 0 106-43t44-107q0-62-44-106t-106-44-106 44-44 106q0 6 1 14t1 12l-260 156q-42-32-92-32-62 0-106 44t-44 106 44 106 106 44q54 0 92-30l260 156q0 4-1 12t-1 12q0 62 44 106t106 44 106-43 44-107q0-62-44-106t-106-44q-52 0-90 32l-262-156q2-8 2-26 0-16-2-24l262-156q36 30 90 30z" horiz-adv-x="800" />
|
||||
|
||||
<glyph glyph-name="phone" unicode="" d="M786 158q0-15-6-39t-12-38q-11-28-68-60-52-28-103-28-15 0-30 2t-32 7-26 8-31 11-28 10q-54 20-97 47-71 44-148 120t-120 148q-27 43-46 97-2 5-10 28t-12 31-8 26-7 32-2 29q0 52 29 104 31 57 59 68 14 6 38 12t39 6q8 0 12-2 10-3 30-42 6-11 16-31t20-35 17-30q2-2 10-14t12-20 4-16q0-11-16-27t-35-31-34-30-16-25q0-5 3-13t4-11 8-14 7-10q42-77 97-132t131-97q1 0 10-6t14-8 11-5 13-2q10 0 25 16t30 34 31 35 28 16q7 0 15-4t20-12 14-10q14-8 30-17t36-20 30-17q39-19 42-29 2-4 2-12z" horiz-adv-x="785.7" />
|
||||
|
||||
<glyph glyph-name="mail" unicode="" d="M929 11v428q-18-20-39-36-149-115-238-189-28-24-46-37t-48-28-57-13h-2q-26 0-57 13t-48 28-46 37q-88 74-238 189-21 16-39 36v-428q0-7 6-13t12-5h822q7 0 12 5t6 13z m0 586v14t-1 7-1 7-3 5-5 4-8 2h-822q-7 0-12-6t-6-12q0-94 83-159 107-84 223-176 4-3 20-17t25-21 25-17 28-16 24-5h2q11 0 24 5t28 16 25 17 25 21 20 17q116 92 224 176 30 24 56 65t26 73z m71 21v-607q0-37-26-63t-63-27h-822q-36 0-63 27t-26 63v607q0 37 26 63t63 26h822q37 0 63-26t26-63z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="plus" unicode="" d="M729 454q44 0 74-31t31-73-31-73-74-30l-208 3 0-212q0-43-30-73t-75-31-73 31-30 73l3 212-212-3q-44 0-74 30t-30 73 30 73 74 31l212 0-3 209q0 42 30 73t73 31 75-31 30-73l0-209 208 0z" horiz-adv-x="834" />
|
||||
|
||||
<glyph glyph-name="plus-1" unicode="" d="M550 400q30 0 30-50t-30-50l-210 0 0-210q0-30-50-30t-50 30l0 210-210 0q-30 0-30 50t30 50l210 0 0 210q0 30 50 30t50-30l0-210 210 0z" horiz-adv-x="580" />
|
||||
|
||||
<glyph glyph-name="right-open" unicode="" d="M618 361l-414-415q-11-10-25-10t-25 10l-93 93q-11 11-11 25t11 25l296 297-296 296q-11 11-11 25t11 25l93 93q10 11 25 11t25-11l414-414q10-11 10-25t-10-25z" horiz-adv-x="714.3" />
|
||||
|
||||
<glyph glyph-name="left-open" unicode="" d="M654 682l-297-296 297-297q10-10 10-25t-10-25l-93-93q-11-10-25-10t-25 10l-414 415q-11 10-11 25t11 25l414 414q10 11 25 11t25-11l93-93q10-10 10-25t-10-25z" horiz-adv-x="714.3" />
|
||||
|
||||
<glyph glyph-name="angle-circled-right" unicode="" d="M400 72l254 253q10 11 10 25t-10 25l-254 254q-10 10-25 10t-25-10l-57-57q-11-11-11-26t11-25l171-171-171-171q-11-11-11-25t11-25l57-57q11-11 25-11t25 11z m457 278q0-117-57-215t-156-156-215-58-216 58-155 156-58 215 58 215 155 156 216 58 215-58 156-156 57-215z" horiz-adv-x="857.1" />
|
||||
|
||||
<glyph glyph-name="right" unicode="" d="M964 352q0-8-5-14l-215-197q-8-8-19-4-11 5-11 17v125h-696q-8 0-13 5t-5 12v108q0 7 5 12t13 5h696v125q0 12 11 17t19-3l215-195q5-6 5-13z" horiz-adv-x="1000" />
|
||||
</font>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 4.8 KiB |
BIN
public/assets/fonts/fontello-51113876.ttf
Normal file
BIN
public/assets/fonts/fontello-51113876.ttf
Normal file
Binary file not shown.
BIN
public/assets/fonts/fontello-51113876.woff
Normal file
BIN
public/assets/fonts/fontello-51113876.woff
Normal file
Binary file not shown.
BIN
public/assets/fonts/fontello-51113876.woff2
Normal file
BIN
public/assets/fonts/fontello-51113876.woff2
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user