Genesis commit for the new page
All checks were successful
continuous-integration/drone/push Build is passing
13
app/Http/Controllers/HomePageController.php
Normal file
@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class HomePageController extends Controller
|
||||
{
|
||||
public function index()
|
||||
{
|
||||
return view('home.index');
|
||||
}
|
||||
}
|
BIN
home/.DS_Store
vendored
Normal file
142
home/documentation/css/prism.css
Normal file
@ -0,0 +1,142 @@
|
||||
/* PrismJS 1.16.0
|
||||
https://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript */
|
||||
/**
|
||||
* prism.js default theme for JavaScript, CSS and HTML
|
||||
* Based on dabblet (http://dabblet.com)
|
||||
* @author Lea Verou
|
||||
*/
|
||||
|
||||
code[class*="language-"],
|
||||
pre[class*="language-"] {
|
||||
color: black;
|
||||
background: none;
|
||||
text-shadow: 0 1px white;
|
||||
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
||||
font-size: 1em;
|
||||
text-align: left;
|
||||
white-space: pre;
|
||||
word-spacing: normal;
|
||||
word-break: normal;
|
||||
word-wrap: normal;
|
||||
line-height: 1.5;
|
||||
|
||||
-moz-tab-size: 4;
|
||||
-o-tab-size: 4;
|
||||
tab-size: 4;
|
||||
|
||||
-webkit-hyphens: none;
|
||||
-moz-hyphens: none;
|
||||
-ms-hyphens: none;
|
||||
hyphens: none;
|
||||
}
|
||||
|
||||
pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
|
||||
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
|
||||
text-shadow: none;
|
||||
background: #b3d4fc;
|
||||
}
|
||||
|
||||
pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
|
||||
code[class*="language-"]::selection, code[class*="language-"] ::selection {
|
||||
text-shadow: none;
|
||||
background: #b3d4fc;
|
||||
}
|
||||
|
||||
@media print {
|
||||
code[class*="language-"],
|
||||
pre[class*="language-"] {
|
||||
text-shadow: none;
|
||||
}
|
||||
}
|
||||
|
||||
/* Code blocks */
|
||||
pre[class*="language-"] {
|
||||
padding: 1em;
|
||||
margin: .5em 0;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
:not(pre) > code[class*="language-"],
|
||||
pre[class*="language-"] {
|
||||
background: #f5f2f0;
|
||||
}
|
||||
|
||||
/* Inline code */
|
||||
:not(pre) > code[class*="language-"] {
|
||||
padding: .1em;
|
||||
border-radius: .3em;
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
.token.comment,
|
||||
.token.prolog,
|
||||
.token.doctype,
|
||||
.token.cdata {
|
||||
color: slategray;
|
||||
}
|
||||
|
||||
.token.punctuation {
|
||||
color: #999;
|
||||
}
|
||||
|
||||
.namespace {
|
||||
opacity: .7;
|
||||
}
|
||||
|
||||
.token.property,
|
||||
.token.tag,
|
||||
.token.boolean,
|
||||
.token.number,
|
||||
.token.constant,
|
||||
.token.symbol,
|
||||
.token.deleted {
|
||||
color: #905;
|
||||
}
|
||||
|
||||
.token.selector,
|
||||
.token.attr-name,
|
||||
.token.string,
|
||||
.token.char,
|
||||
.token.builtin,
|
||||
.token.inserted {
|
||||
color: #690;
|
||||
}
|
||||
|
||||
.token.operator,
|
||||
.token.entity,
|
||||
.token.url,
|
||||
.language-css .token.string,
|
||||
.style .token.string {
|
||||
color: #9a6e3a;
|
||||
background: hsla(0, 0%, 100%, .5);
|
||||
}
|
||||
|
||||
.token.atrule,
|
||||
.token.attr-value,
|
||||
.token.keyword {
|
||||
color: #07a;
|
||||
}
|
||||
|
||||
.token.function,
|
||||
.token.class-name {
|
||||
color: #DD4A68;
|
||||
}
|
||||
|
||||
.token.regex,
|
||||
.token.important,
|
||||
.token.variable {
|
||||
color: #e90;
|
||||
}
|
||||
|
||||
.token.important,
|
||||
.token.bold {
|
||||
font-weight: bold;
|
||||
}
|
||||
.token.italic {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.token.entity {
|
||||
cursor: help;
|
||||
}
|
||||
|
60
home/documentation/css/style.css
Normal file
@ -0,0 +1,60 @@
|
||||
body {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #f14201;
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
.header {
|
||||
background: url(../img/header.jpg) center bottom;
|
||||
padding: 100px 0;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.nav li a {
|
||||
display: block;
|
||||
padding: 0.25rem 1.5rem;
|
||||
font-weight: 600;
|
||||
color: rgba(0, 0, 0, 0.65);
|
||||
}
|
||||
.nav li .active,
|
||||
.nav li a:hover {
|
||||
color: #f14201;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.nav li ul li a {
|
||||
font-size: 90%;
|
||||
}
|
||||
|
||||
.sidebar {
|
||||
-ms-flex: 0 1 320px;
|
||||
flex: 0 1 320px;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.sidebar {
|
||||
position: -webkit-sticky;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 1000;
|
||||
height: calc(100vh - 4rem);
|
||||
border-right: 1px solid rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar {
|
||||
-ms-flex-order: 0;
|
||||
order: 0;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.scrollspy-example {
|
||||
position: relative;
|
||||
|
||||
margin-top: 0.5rem;
|
||||
overflow: auto;
|
||||
}
|
BIN
home/documentation/img/form.jpg
Normal file
After Width: | Height: | Size: 8.7 KiB |
BIN
home/documentation/img/gsap.JPG
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
home/documentation/img/head.JPG
Normal file
After Width: | Height: | Size: 28 KiB |
BIN
home/documentation/img/header.jpg
Normal file
After Width: | Height: | Size: 58 KiB |
92
home/documentation/index.html
Normal file
@ -0,0 +1,92 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Required meta tags -->
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
|
||||
<!-- Bootstrap CSS -->
|
||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
<link rel="stylesheet" href="css/prism.css">
|
||||
<title>Robert - Interior Studio HTML Template</title>
|
||||
</head>
|
||||
<body data-spy="scroll" data-target="#navbar-example">
|
||||
<header class="header">
|
||||
<div class="container">
|
||||
<h2>Robert - Interior Studio HTML Template</h2>
|
||||
<p class="text-muted">Design to attract, convert and<br>delight your customers</p>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container-fluid">
|
||||
<div class="row">
|
||||
<nav id="navbar-example" class="col-12 col-md-3 col-xl-2 sidebar py-5">
|
||||
<ul class="nav d-block">
|
||||
<li><a href="#project">Project Structure</a>
|
||||
</li>
|
||||
<li><a href="#gsap">GSAPr</a>
|
||||
</li>
|
||||
<li><a href="#number">Number counter</a>
|
||||
</li>
|
||||
<li><a href="#form">Form send email</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<div class="col-12 col-md-9 col-xl-8 py-5 pl-md-5 content">
|
||||
<div id="project">
|
||||
<h2 class="mb-5">Project Structure</h2>
|
||||
<div class="alert alert-danger" role="alert">Robert will work correctly only on the web server!</div>
|
||||
<p>The structure of the Robert HTML template:</p>
|
||||
<ul>
|
||||
<li><b>css</b> - all common scripts used on the pages, theme styles included in <b>main.css</b> and <b>blog_page.css</b> files</li>
|
||||
<li><b>fonts</b> - all fonts used on the pages</li>
|
||||
<li><b>img</b> - icons and backgrounds for the project</li>
|
||||
<li><b>svg</b> - svg sprite for the project</li>
|
||||
<li><b>images</b> - photo images for the project</li>
|
||||
<li><b>js</b> - all common scripts used on the pages file</li>
|
||||
<li><b>php</b> - the script for the site forms</li>
|
||||
</ul>
|
||||
<h5 class="my-4">Head</h5>
|
||||
<img alt="" src="img/head.jpg">
|
||||
</div>
|
||||
|
||||
<div id="gsap" class="my-5">
|
||||
<h3>GSAP</h3>
|
||||
<p>All scroll animations and slider are built with plugin <a href="https://greensock.com/gsap/">GSAP v3</a>, you can find documentation <a href="https://greensock.com/docs/v3/GSAP">here</a></p>
|
||||
<h5 class="my-4"><b>Change animation settings</b></h5>
|
||||
<p>Change the value of <b>variables</b> in <b>main.js</b> file.</p>
|
||||
<p><img src="img/gsap.jpg"></p>
|
||||
<ul>
|
||||
<li><b>hSpeed</b> - horizontal scrolling speed in percent</li>
|
||||
<li><b>vSpeed</b> - scrolling speed of vertical blocks</li>
|
||||
<li><b>scrubPower</b> - time / strength of action of smooth stop after scrolling</li>
|
||||
<li><b>snapMode</b> - scrolling to block boundaries</li>
|
||||
<li><b>noiseMode</b> - background noise</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div id="number" class="my-5">
|
||||
<h3 class="mb-4">Number Counter</h3>
|
||||
<p class="mb-5"><img src="img/counter.jpg"></p>
|
||||
<h5 class="my-4"><b>To change numbers, change this values:</b></h5>
|
||||
<p><img src="img/counter2.jpg"></p>
|
||||
</div>
|
||||
|
||||
<div id="form" class="my-5">
|
||||
<h3 class="mb-4">Form send email</h3>
|
||||
<h5 class="my-4"><b>To change email and title, change this values:</b></h5>
|
||||
<p class="mb-5"><img src="img/form.jpg"></p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Optional JavaScript -->
|
||||
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
|
||||
<script src="js/jquery.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
|
||||
<script src="js/prism.js"></script>
|
||||
<script src="js/script.js"></script>
|
||||
</body>
|
||||
</html>
|
6
home/documentation/js/jquery.min.js
vendored
Normal file
7
home/documentation/js/prism.js
Normal file
27
home/documentation/js/script.js
Normal file
@ -0,0 +1,27 @@
|
||||
jQuery.noConflict()(function($) {
|
||||
'use strict';
|
||||
|
||||
$(document).ready(function () {
|
||||
|
||||
|
||||
|
||||
$('a[href^="#"]').on('click', function() {
|
||||
$('a[href^="#"]').removeClass('active');
|
||||
var id = $(this).attr('href');
|
||||
$(this).addClass('active');
|
||||
scrollToAnchor(id);
|
||||
|
||||
return false;
|
||||
|
||||
});
|
||||
|
||||
function scrollToAnchor(aid){
|
||||
var aTag = $(aid);
|
||||
$('html,body').animate({scrollTop: aTag.offset().top},'slow');
|
||||
}
|
||||
|
||||
|
||||
});
|
||||
|
||||
|
||||
});
|
199
public/home/blog.html
Normal file
@ -0,0 +1,199 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="description" content="">
|
||||
<meta name="keywords" content="">
|
||||
<meta name="format-detection" content="telephone=no">
|
||||
<title>Blog</title>
|
||||
<link href="css/blog_page.css" rel="stylesheet">
|
||||
<link href="css/main.css" rel="stylesheet">
|
||||
<link rel="shortcut icon" href="img/favicon_1.ico" type="image/x-icon">
|
||||
<style>
|
||||
@keyframes animate-circle {
|
||||
from {
|
||||
transform: scale(0);
|
||||
opacity: 1;
|
||||
}
|
||||
to {
|
||||
transform: scale(1);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
#preloader{
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 999;
|
||||
background: #1C1C1C;
|
||||
background: linear-gradient(to right, rgba(36, 31, 31, 1) 0%, rgba(36, 31, 31, 1) 32%, rgba(74, 71, 70, 1) 100%);
|
||||
}
|
||||
.loader {
|
||||
position: fixed;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
height: 10rem;
|
||||
width: 10rem;
|
||||
transform: translateX(-50%) translateY(-50%);
|
||||
}
|
||||
.loader > .circle {
|
||||
position: absolute;
|
||||
height: inherit;
|
||||
width: inherit;
|
||||
background: #B66449;
|
||||
border-radius: 0;
|
||||
animation: animate-circle 2s cubic-bezier(.9, .24, .62, .79) infinite;
|
||||
}
|
||||
.loader > .circle:nth-of-type(1) {
|
||||
animation-delay: 0s;
|
||||
}
|
||||
.loader > .circle:nth-of-type(2) {
|
||||
animation-delay: calc(2s / -3);
|
||||
}
|
||||
.loader > .circle:nth-of-type(3) {
|
||||
animation-delay: calc(2s / -6);
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="preloader">
|
||||
<div class="loader">
|
||||
<div class="circle"></div>
|
||||
<div class="circle"></div>
|
||||
<div class="circle"></div>
|
||||
</div>
|
||||
</div>
|
||||
<main class="main blog_page">
|
||||
<canvas class="noise" id="noise"></canvas>
|
||||
<div class="header">
|
||||
<canvas class="noise noise--inner" id="noise_menu"></canvas>
|
||||
<div class="header__left">
|
||||
<div class="header__letter">P</div>
|
||||
<div class="header__socials"><a href="" target="_blank">
|
||||
<svg>
|
||||
<use xlink:href="./svg/sprite.svg#fb"></use>
|
||||
</svg></a><a href="" target="_blank">
|
||||
<svg>
|
||||
<use xlink:href="./svg/sprite.svg#tw"></use>
|
||||
</svg></a><a href="" target="_blank">
|
||||
<svg>
|
||||
<use xlink:href="./svg/sprite.svg#in"></use>
|
||||
</svg></a></div>
|
||||
</div>
|
||||
<div class="header__right">
|
||||
<ul class="blog_page-menu">
|
||||
<li><a class="js-scroll-link" href="#">HOME</a></li>
|
||||
<li><a class="js-scroll-link" href="#">Projects</a></li>
|
||||
<li><a class="js-scroll-link" href="#">awwards</a></li>
|
||||
<li><a class="js-scroll-link" href="#">testimonials</a></li>
|
||||
<li><a class="js-scroll-link" href="#">experience</a></li>
|
||||
<li class="active"><a class="js-scroll-link" href="#">blog</a></li>
|
||||
<li><a class="js-scroll-link" href="#">CONTACT</a></li>
|
||||
</ul>
|
||||
<div class="header__phone"><a href="tel:+23155908368">+2(315) 590 83 68</a></div>
|
||||
</div>
|
||||
</div>
|
||||
<section class="blog_page-big_banner">
|
||||
<div class="blog_page-container">
|
||||
<div class="small">February 17, 2021</div>
|
||||
<div class="h1">Devices </div>
|
||||
<div class="h1">Mockups</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="blog_page-content">
|
||||
<div class="blog_page-container">
|
||||
<div class="blog_page-text">
|
||||
<div class="blog_page-h1">Beast creature days.</div>
|
||||
<div class="small">This response is important for our ability to learn from mistakes, but it alsogives rise to self-criticism, because it is part of the threat-protection system. In other words, what keeps us safe can go too far, and keep us too safe. In fact it can trigger self-censoring.</div>
|
||||
<div class="small">One touch of a red-hot stove is usually all we need to avoid that kind of discomfort in the future. The same is true as we experience the emotional sensation of stress from our first instances of social rejection or ridicule. We quickly learn to fear and thus automatically avoid potentially stressful situations of all kinds, including the most common of all: </div>
|
||||
</div><img class="blog_page-banner" src="images/big-banner_item1.png" alt="">
|
||||
<div class="blog_page-text">
|
||||
<div class="blog_page-h1">Methods for Everyone</div>
|
||||
<div class="small">Everything along the way, to and from, fascinated her: every pebble, ant, stick, leaf, blade of grass, and crack in the sidewalk was something to be picked up, looked at, tasted, smelled, and shaken. Everything was interesting to her. She knew nothing. I knew everything…been there, done that. She was in the moment, I was in the past. She was mindful. I was mindless.</div>
|
||||
<div class="small">One touch of a red-hot stove is usually all we need to avoid that kind of discomfort in the future. The same is true as we experience the emotional sensation of stress from our first instances of social rejection or ridicule. We quickly learn to fear and thus automatically avoid potentially stressful situations of all kinds, including the most common of all: making mistakes.</div>
|
||||
</div><img class="blog_page-banner" src="images/big-banner_item2.png" alt="">
|
||||
<div class="blog_page-reviws">
|
||||
<div class="blog_page-reviws_text">Our greatest weakness lies in giving up. The most certain way to succeed is always to try just one more time. emotional sensation of stress from our firs</div>
|
||||
<div class="blog_page-reviws_name small">Paul</div>
|
||||
<div class="blog_page-reviws_place small">Elite Author</div>
|
||||
</div>
|
||||
<ul class="blog_page-tags">
|
||||
<li class="blog_page-tags_item blog_page-tags_title">Tags: </li>
|
||||
<li class="blog_page-tags_item"><a class="blog_page-tags_link" href="#">Follow</a>, </li>
|
||||
<li class="blog_page-tags_item"><a class="blog_page-tags_link" href="#">Like</a>, </li>
|
||||
<li class="blog_page-tags_item"><a class="blog_page-tags_link" href="#">Photography</a></li>
|
||||
</ul>
|
||||
<ul class="blog_page-share">
|
||||
<li class="blog_page-share_item blog_page-share_title">Share: </li>
|
||||
<li class="blog_page-share_item"><a href="#">
|
||||
<svg>
|
||||
<use xlink:href="./svg/sprite.svg#fb"></use>
|
||||
</svg></a></li>
|
||||
<li class="blog_page-share_item"><a href="#">
|
||||
<svg>
|
||||
<use xlink:href="./svg/sprite.svg#tw"></use>
|
||||
</svg></a></li>
|
||||
<li class="blog_page-share_item"><a href="#">
|
||||
<svg>
|
||||
<use xlink:href="./svg/sprite.svg#inst"></use>
|
||||
</svg></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
<section class="blog_page-comments">
|
||||
<div class="blog_page-comments_container">
|
||||
<div class="blog_page-h1">Comments</div>
|
||||
<div class="blog_page-comments_wrapper">
|
||||
<div class="blog_page-comments_block">
|
||||
<div class="blog_page-comments_icon"><img src="images/reviews.png" alt=""></div>
|
||||
<div class="blog_page-comments_content">
|
||||
<div class="blog_page-comments_heading">
|
||||
<div class="small">Hayley</div>
|
||||
<div class="blog_page-comments_date">Jul 03, 2020 at 15 hours ago</div>
|
||||
</div>
|
||||
<div class="blog_page-comments_text">
|
||||
<div class="small">Everything along the way, to and from, fascinated her: every pebble, ant, stick, leaf, blade of grass, and crack in the sidewalk was something to be picked up</div>
|
||||
</div><a class="blog_page-comments_btn" href="#"> <span>Reply</span></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="blog_page-comments_block">
|
||||
<div class="blog_page-comments_icon"><img src="images/reviews2.png" alt=""></div>
|
||||
<div class="blog_page-comments_content">
|
||||
<div class="blog_page-comments_heading">
|
||||
<div class="small">Harry</div>
|
||||
<div class="blog_page-comments_date">Jul 03, 2020 at 15 hours ago</div>
|
||||
</div>
|
||||
<div class="blog_page-comments_text">
|
||||
<div class="small">Everything along the way, to and from, fascinated her: every pebble, ant, stick, leaf, blade of grass, and crack in the sidewalk was something to be picked up</div>
|
||||
</div><a class="blog_page-comments_btn" href="#"> <span>Reply</span></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<form class="content__form">
|
||||
<div class="content__form-title">Post a comment</div>
|
||||
<label class="content__form-input">
|
||||
<input type="text" name="name"><span class="content__form-placeholder">name</span>
|
||||
</label>
|
||||
<label class="content__form-input">
|
||||
<input type="email" name="emal" required=""><span class="content__form-placeholder">EMAIL *</span>
|
||||
</label>
|
||||
<label class="content__form-input">
|
||||
<input type="text" name="msg" required=""><span class="content__form-placeholder">MESSAGE *</span>
|
||||
</label>
|
||||
<div class="content__form-btn">
|
||||
<button class="btn btn--arrow" type="submit">
|
||||
<svg>
|
||||
<use xlink:href="./svg/sprite.svg#arrow"></use>
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
<script src="js/main.js"></script>
|
||||
</body>
|
||||
</html>
|
515
public/home/css/blog_page.css
Normal file
@ -0,0 +1,515 @@
|
||||
/* 3.1 Blog page */
|
||||
#noise_menu {
|
||||
display: none; }
|
||||
|
||||
.blog_page .header {
|
||||
-webkit-transition: -webkit-transform 0.5s linear;
|
||||
transition: -webkit-transform 0.5s linear;
|
||||
transition: transform 0.5s linear;
|
||||
transition: transform 0.5s linear, -webkit-transform 0.5s linear;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0; }
|
||||
.blog_page .header:before {
|
||||
content: '';
|
||||
z-index: -1;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
background: -webkit-gradient(linear, left top, right top, color-stop(0, #241f1f), color-stop(32%, #241f1f), to(#4a4746));
|
||||
background: linear-gradient(to right, #241f1f 0, #241f1f 32%, #4a4746 100%);
|
||||
-webkit-transition: opacity 0.5s linear;
|
||||
transition: opacity 0.5s linear;
|
||||
opacity: 0; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page .header {
|
||||
background: transparent; } }
|
||||
.blog_page .header.active {
|
||||
position: fixed; }
|
||||
.blog_page .header.active:before {
|
||||
opacity: 1; }
|
||||
|
||||
.blog_page-container {
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
display: block;
|
||||
width: 57.8125vw;
|
||||
margin: 0 auto; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-container {
|
||||
width: calc(100% - 30px); } }
|
||||
|
||||
.blog_page-big_banner {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 44.27083vw;
|
||||
background: center top/contain url(../images/blog-big_banner-bg.png) no-repeat;
|
||||
background-attachment: fixed; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-big_banner {
|
||||
height: 100vw;
|
||||
background: center top/cover url(../images/blog-big_banner-bg.png) no-repeat; } }
|
||||
.blog_page-big_banner .blog_page-container {
|
||||
height: 100%;
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
padding-bottom: 5.26042vw;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-box-direction: normal;
|
||||
-ms-flex-direction: column;
|
||||
flex-direction: column;
|
||||
-webkit-box-pack: start;
|
||||
-ms-flex-pack: start;
|
||||
justify-content: flex-start;
|
||||
-webkit-box-align: start;
|
||||
-ms-flex-align: start;
|
||||
align-items: flex-start; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-big_banner .blog_page-container {
|
||||
padding-bottom: 13.6vw; } }
|
||||
.blog_page-big_banner .blog_page-container .small {
|
||||
margin-top: auto;
|
||||
margin-bottom: 1.77083vw; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-big_banner .blog_page-container .small {
|
||||
margin-bottom: 6.4vw; } }
|
||||
.blog_page-big_banner .blog_page-container .h1:last-child {
|
||||
margin-top: 0.52083vw; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-big_banner .blog_page-container .h1:last-child {
|
||||
margin-top: 2.66667vw; } }
|
||||
|
||||
.blog_page-content {
|
||||
padding: 13.22917vw 0 5.72917vw;
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.4); }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-content {
|
||||
padding: 13.33333vw 0 13.33333vw; } }
|
||||
|
||||
.blog_page-text {
|
||||
margin: 0 auto;
|
||||
width: 38.02083vw; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-text {
|
||||
width: 100%; } }
|
||||
.blog_page-text .small {
|
||||
line-height: 1.35417vw; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-text .small {
|
||||
line-height: 6.93333vw; } }
|
||||
.blog_page-text .small + .small {
|
||||
margin-top: 1.5625vw; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-text .small + .small {
|
||||
margin-top: 5.33333vw; } }
|
||||
|
||||
.blog_page-banner {
|
||||
display: block;
|
||||
width: 100%;
|
||||
margin: 6.25vw 0; }
|
||||
.blog_page-banner:last-child {
|
||||
margin-bottom: 0; }
|
||||
|
||||
.blog_page-h1 {
|
||||
display: block;
|
||||
margin-bottom: 3.33333vw;
|
||||
font-weight: 500;
|
||||
font-size: 2.34375vw;
|
||||
line-height: 2.86458vw;
|
||||
text-transform: uppercase;
|
||||
color: #e2dcc8; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-h1 {
|
||||
margin-bottom: 9.06667vw;
|
||||
font-size: 6.66667vw;
|
||||
line-height: 14.66667vw; } }
|
||||
|
||||
.blog_page-menu {
|
||||
list-style: none;
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-menu {
|
||||
display: none; } }
|
||||
.blog_page-menu li {
|
||||
display: block;
|
||||
padding: 0 1.66667vw;
|
||||
text-transform: uppercase; }
|
||||
.blog_page-menu li a {
|
||||
font-size: 0.72917vw;
|
||||
line-height: 140%;
|
||||
display: block; }
|
||||
.blog_page-menu li.active a {
|
||||
color: #b66449; }
|
||||
|
||||
.blog_page-reviws {
|
||||
position: relative;
|
||||
width: 38.02083vw;
|
||||
padding: 2.13542vw 3.75vw 1.77083vw 6.66667vw;
|
||||
margin: 0 auto;
|
||||
border: 1px solid rgba(255, 255, 255, 0.4);
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-reviws {
|
||||
width: 100%;
|
||||
padding: 5.6vw 8.53333vw 5.6vw 18.66667vw; } }
|
||||
.blog_page-reviws:before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 2.39583vw;
|
||||
top: 1.97917vw;
|
||||
display: block;
|
||||
width: 1.97917vw;
|
||||
height: 2.39583vw;
|
||||
background: url(../img/q.png) no-repeat;
|
||||
background-size: contain;
|
||||
pointer-events: none;
|
||||
background-position: center bottom; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-reviws:before {
|
||||
top: 3.2vw;
|
||||
left: 4vw;
|
||||
width: 10.13333vw;
|
||||
height: 12.26667vw; } }
|
||||
.blog_page-reviws_text {
|
||||
display: block;
|
||||
margin-bottom: 1.45833vw;
|
||||
font-weight: normal;
|
||||
font-size: 1.04167vw;
|
||||
line-height: 1.82292vw; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-reviws_text {
|
||||
margin-bottom: 4vw;
|
||||
font-size: 4.26667vw;
|
||||
line-height: 5.86667vw; } }
|
||||
.blog_page-reviws_name {
|
||||
font-weight: 700;
|
||||
margin-bottom: 0.52083vw; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-reviws_name {
|
||||
margin-bottom: 2.66667vw; } }
|
||||
.blog_page-reviws_place {
|
||||
opacity: 0.6; }
|
||||
|
||||
.blog_page-tags {
|
||||
display: block;
|
||||
width: 38.02083vw;
|
||||
margin: 4.27083vw auto 2.39583vw; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-tags {
|
||||
width: 100%;
|
||||
margin: 11.2vw auto 6.93333vw; } }
|
||||
.blog_page-tags_item {
|
||||
display: inline-block;
|
||||
font-weight: normal;
|
||||
font-size: 0.83333vw;
|
||||
line-height: 1.35417vw; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-tags_item {
|
||||
font-size: 4.26667vw;
|
||||
line-height: 6.93333vw; } }
|
||||
.blog_page-tags_title {
|
||||
opacity: 0.6; }
|
||||
.blog_page-tags_link {
|
||||
font-weight: normal;
|
||||
font-size: 0.83333vw;
|
||||
line-height: 1.35417vw;
|
||||
-webkit-transition: color 0.2s linear;
|
||||
transition: color 0.2s linear; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-tags_link {
|
||||
font-size: 4.26667vw;
|
||||
line-height: 6.93333vw; } }
|
||||
.blog_page-tags_link:hover {
|
||||
color: #b66449; }
|
||||
|
||||
.blog_page-share {
|
||||
display: block;
|
||||
width: 38.02083vw;
|
||||
margin: 0 auto; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-share {
|
||||
width: 100%; } }
|
||||
.blog_page-share_item {
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
margin-right: 1.04167vw; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-share_item {
|
||||
margin-right: 5.33333vw; } }
|
||||
.blog_page-share_item svg {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%; }
|
||||
.blog_page-share_item:nth-child(2) a {
|
||||
display: block;
|
||||
width: 0.625vw;
|
||||
height: 1.09375vw; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-share_item:nth-child(2) a {
|
||||
width: 3.2vw;
|
||||
height: 5.6vw; } }
|
||||
.blog_page-share_item:nth-child(3) a {
|
||||
display: block;
|
||||
width: 1.19792vw;
|
||||
height: 1.09375vw; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-share_item:nth-child(3) a {
|
||||
width: 6.13333vw;
|
||||
height: 5.6vw; } }
|
||||
.blog_page-share_item:nth-child(4) a {
|
||||
display: block;
|
||||
width: 1.30208vw;
|
||||
height: 1.30208vw; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-share_item:nth-child(4) a {
|
||||
width: 6.66667vw;
|
||||
height: 6.66667vw; } }
|
||||
.blog_page-share_title {
|
||||
margin-right: 1.40625vw;
|
||||
opacity: 0.6;
|
||||
font-weight: normal;
|
||||
font-size: 0.83333vw;
|
||||
line-height: 1.35417vw; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-share_title {
|
||||
margin-right: 7.2vw;
|
||||
font-size: 4.26667vw;
|
||||
line-height: 6.93333vw; } }
|
||||
|
||||
.blog_page-comments {
|
||||
padding: 6.875vw 0; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-comments {
|
||||
padding: 13.86667vw 0; } }
|
||||
.blog_page-comments_container {
|
||||
width: 38.02083vw;
|
||||
margin: 0 auto; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-comments_container {
|
||||
width: calc(100% - 30px); } }
|
||||
.blog_page-comments .blog_page-h1 {
|
||||
margin-bottom: 6.45833vw; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-comments .blog_page-h1 {
|
||||
margin-bottom: 14.4vw; } }
|
||||
.blog_page-comments_block {
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-pack: start;
|
||||
-ms-flex-pack: start;
|
||||
justify-content: flex-start;
|
||||
-webkit-box-align: start;
|
||||
-ms-flex-align: start;
|
||||
align-items: flex-start;
|
||||
margin-bottom: 4.6875vw; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-comments_block {
|
||||
margin-bottom: 13.33333vw; } }
|
||||
.blog_page-comments_block + .blog_page-comments_block {
|
||||
padding-left: 5.9375vw; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-comments_block + .blog_page-comments_block {
|
||||
padding-left: 16vw; } }
|
||||
.blog_page-comments_icon {
|
||||
display: block;
|
||||
-ms-flex-negative: 0;
|
||||
flex-shrink: 0;
|
||||
width: 4.16667vw;
|
||||
height: 4.16667vw;
|
||||
border-radius: 50%;
|
||||
overflow: hidden; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-comments_icon {
|
||||
width: 10.66667vw;
|
||||
height: 10.66667vw; } }
|
||||
.blog_page-comments_icon img {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border-radius: 50%;
|
||||
-o-object-position: center;
|
||||
object-position: center;
|
||||
-o-object-fit: cover;
|
||||
object-fit: cover; }
|
||||
.blog_page-comments_content {
|
||||
padding-left: 1.77083vw; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-comments_content {
|
||||
padding-left: 5.33333vw; } }
|
||||
.blog_page-comments_heading {
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-pack: start;
|
||||
-ms-flex-pack: start;
|
||||
justify-content: flex-start;
|
||||
-webkit-box-align: end;
|
||||
-ms-flex-align: end;
|
||||
align-items: flex-end;
|
||||
margin-bottom: 0.78125vw; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-comments_heading {
|
||||
margin-bottom: 4vw; } }
|
||||
.blog_page-comments_heading .small {
|
||||
font-weight: 700;
|
||||
min-width: 3.22917vw;
|
||||
margin-right: 0.41667vw; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-comments_heading .small {
|
||||
min-width: 16.53333vw;
|
||||
margin-right: 2.13333vw; } }
|
||||
.blog_page-comments_date {
|
||||
font-size: 0.67708vw;
|
||||
line-height: 0.83333vw;
|
||||
text-transform: uppercase;
|
||||
opacity: 0.6; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-comments_date {
|
||||
font-size: 3.46667vw;
|
||||
line-height: 4.26667vw; } }
|
||||
.blog_page-comments_text {
|
||||
margin-bottom: 1.09375vw; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-comments_text {
|
||||
margin-bottom: 5.6vw; } }
|
||||
.blog_page-comments_text .small {
|
||||
line-height: 1.35417vw;
|
||||
opacity: 0.6; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-comments_text .small {
|
||||
line-height: 6.93333vw; } }
|
||||
.blog_page-comments_btn {
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-pack: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
width: 4.11458vw;
|
||||
height: 1.25vw;
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
-webkit-transition: 0.2s linear;
|
||||
transition: 0.2s linear;
|
||||
border: 1px solid #e2dcc8;
|
||||
font-weight: bold;
|
||||
font-size: 0.67708vw;
|
||||
line-height: 0.83333vw;
|
||||
cursor: pointer; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page-comments_btn {
|
||||
width: 21.06667vw;
|
||||
height: 6.4vw;
|
||||
font-size: 3.46667vw;
|
||||
line-height: 4.26667vw; } }
|
||||
.blog_page-comments_btn span {
|
||||
-webkit-transition: 0.2s linear;
|
||||
transition: 0.2s linear;
|
||||
color: #e2dcc8; }
|
||||
.blog_page-comments_btn:hover {
|
||||
background: #b66449;
|
||||
border-color: #b66449; }
|
||||
|
||||
.blog_page .content__form {
|
||||
position: relative; }
|
||||
.blog_page .content__form-placeholder {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
font-size: 0.9375vw;
|
||||
line-height: 2.60417vw;
|
||||
opacity: 0.5;
|
||||
text-transform: uppercase;
|
||||
pointer-events: none;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
display: block;
|
||||
-webkit-transition: 0.2s;
|
||||
transition: 0.2s;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page .content__form-placeholder {
|
||||
font-size: 4.8vw;
|
||||
line-height: 13.33333vw; } }
|
||||
.blog_page .content__form-input {
|
||||
height: 2.60417vw;
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
position: relative;
|
||||
display: block;
|
||||
width: 100%; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page .content__form-input {
|
||||
height: 13.33333vw; } }
|
||||
.blog_page .content__form-input + .content__form-input {
|
||||
margin-top: 2.91667vw; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page .content__form-input + .content__form-input {
|
||||
margin-top: 5.33333vw; } }
|
||||
.blog_page .content__form-input input {
|
||||
background: transparent;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
outline: none;
|
||||
color: inherit;
|
||||
border: none;
|
||||
border-bottom: 1px solid #e2dcc8;
|
||||
font-size: 0.9375vw;
|
||||
line-height: 1.82292vw; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page .content__form-input input {
|
||||
font-size: 4.8vw;
|
||||
line-height: 9.33333vw; } }
|
||||
.blog_page .content__form-input input.valid, .blog_page .content__form-input input:focus {
|
||||
outline: none; }
|
||||
.blog_page .content__form-input input.valid + .content__form-placeholder, .blog_page .content__form-input input:focus + .content__form-placeholder {
|
||||
font-size: 0.67708vw;
|
||||
line-height: 0.67708vw;
|
||||
top: -0.3125vw; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page .content__form-input input.valid + .content__form-placeholder, .blog_page .content__form-input input:focus + .content__form-placeholder {
|
||||
font-size: 3.46667vw;
|
||||
line-height: 3.46667vw;
|
||||
top: -1.6vw; } }
|
||||
.blog_page .content__form-btn {
|
||||
margin-top: 4.0625vw; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page .content__form-btn {
|
||||
margin-top: 8vw; } }
|
||||
.blog_page .content__form-title {
|
||||
display: block;
|
||||
margin-bottom: 2.29167vw;
|
||||
font-weight: normal;
|
||||
font-size: 1.45833vw;
|
||||
line-height: 150%; }
|
||||
@media screen and (max-width: 768px) and (orientation: portrait) {
|
||||
.blog_page .content__form-title {
|
||||
margin-bottom: 6.4vw;
|
||||
font-size: 7.46667vw; } }
|
||||
|
||||
.blog_page-big_banner .blog_page-container > * {
|
||||
position: relative; }
|
||||
|
||||
/*# sourceMappingURL=maps/blog_page.css.map */
|
1395
public/home/css/main.css
Normal file
1
public/home/css/maps/blog_page.css.map
Normal file
1
public/home/css/maps/main.css.map
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-Black.eot
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-Black.ttf
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-Black.woff
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-BlackItalic.eot
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-BlackItalic.ttf
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-BlackItalic.woff
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-Bold.eot
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-Bold.ttf
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-Bold.woff
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-BoldItalic.eot
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-BoldItalic.ttf
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-BoldItalic.woff
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-Heavy.eot
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-Heavy.ttf
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-Heavy.woff
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-HeavyItalic.eot
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-HeavyItalic.ttf
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-HeavyItalic.woff
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-Italic.eot
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-Italic.ttf
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-Italic.woff
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-Light.eot
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-Light.ttf
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-Light.woff
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-LightItalic.eot
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-LightItalic.ttf
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-LightItalic.woff
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-Medium.eot
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-Medium.ttf
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-Medium.woff
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-MediumItalic.eot
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-MediumItalic.ttf
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-MediumItalic.woff
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-Roman.eot
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-Roman.ttf
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-Roman.woff
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-Thin.eot
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-Thin.ttf
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-Thin.woff
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-ThinItalic.eot
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-ThinItalic.ttf
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-ThinItalic.woff
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-UltraLight.eot
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-UltraLight.ttf
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-UltraLight.woff
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-UltraLightItalic.eot
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-UltraLightItalic.ttf
Normal file
BIN
public/home/fonts/HelveticaNeueCyr-UltraLightItalic.woff
Normal file
BIN
public/home/images/big-banner_item1.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
public/home/images/big-banner_item2.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
public/home/images/blog-big_banner-bg.png
Normal file
After Width: | Height: | Size: 38 KiB |
BIN
public/home/images/exp-bg.jpg
Normal file
After Width: | Height: | Size: 21 KiB |
3
public/home/images/exp-bg.png
Normal file
@ -0,0 +1,3 @@
|
||||
<?xml version="1.0" encoding="utf-8"?><Error><Code>AuthenticationFailed</Code><Message>Server failed to authenticate the request. Make sure the value of Authorization header is formed correctly including the signature.
|
||||
RequestId:806adbb1-f01e-0022-5859-b30227000000
|
||||
Time:2025-04-22T07:36:21.2665485Z</Message><AuthenticationErrorDetail>Signed expiry time [Tue, 22 Apr 2025 07:14:37 GMT] must be after signed start time [Tue, 22 Apr 2025 07:36:21 GMT]</AuthenticationErrorDetail></Error>
|
0
public/home/images/exp-bg.png:Zone.Identifier
Normal file
BIN
public/home/images/noise.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
public/home/images/reviews.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
public/home/images/reviews2.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
public/home/images/testmonials-bg.png
Normal file
After Width: | Height: | Size: 8.2 KiB |
BIN
public/home/img/ChatGPT Image Apr 22, 2025, 11_06_57 AM.png
Normal file
After Width: | Height: | Size: 1.7 MiB |
BIN
public/home/img/ChatGPT Image Apr 22, 2025, 11_16_33 AM.png
Normal file
After Width: | Height: | Size: 1.9 MiB |
BIN
public/home/img/ChatGPT Image Apr 22, 2025, 11_23_19 AM.png
Normal file
After Width: | Height: | Size: 1.9 MiB |
BIN
public/home/img/ChatGPT Image Apr 22, 2025, 11_27_40 AM.png
Normal file
After Width: | Height: | Size: 1.8 MiB |
BIN
public/home/img/ChatGPT Image Apr 22, 2025, 11_33_42 AM.png
Normal file
After Width: | Height: | Size: 1.8 MiB |
1
public/home/img/arrow-link.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg width="23" height="23" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M22.5 2A1.5 1.5 0 0021 .5H7.5a1.5 1.5 0 100 3h12v12a1.5 1.5 0 003 0V2zM3.06 22.06l19-19L19.94.94l-19 19 2.12 2.12z" fill="#E2DCC8"/></svg>
|
After Width: | Height: | Size: 222 B |
BIN
public/home/img/award-1.png
Normal file
After Width: | Height: | Size: 2.0 MiB |
0
public/home/img/award-1.png:Zone.Identifier
Normal file
BIN
public/home/img/award-2.png
Normal file
After Width: | Height: | Size: 1.9 MiB |
0
public/home/img/award-2.png:Zone.Identifier
Normal file
BIN
public/home/img/award-3.png
Normal file
After Width: | Height: | Size: 1.9 MiB |
0
public/home/img/award-3.png:Zone.Identifier
Normal file
BIN
public/home/img/award-4.png
Normal file
After Width: | Height: | Size: 2.8 MiB |
0
public/home/img/award-4.png:Zone.Identifier
Normal file
BIN
public/home/img/client-1.png
Normal file
After Width: | Height: | Size: 1.8 MiB |
0
public/home/img/client-1.png:Zone.Identifier
Normal file
BIN
public/home/img/client-2.png
Normal file
After Width: | Height: | Size: 1.6 MiB |