This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Плавная прокрутка по якорям</title> | |
| <link rel="stylesheet" href="style.css"> | |
| </head> | |
| <body> | |
| <ul class="anchor-list"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Скользящая линия</title> | |
| <link rel="stylesheet" href="style.css"> | |
| </head> | |
| <body> | |
| <nav class="nav-underline clearfix"> | |
| <ul> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Preloader --> | |
| <div class="loader"> | |
| <div class="loader-inner"></div> | |
| </div> | |
| <!-- Preloader End--> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Вкладки | |
| [ | |
| {"caption":"Info", "fields": | |
| [ | |
| {"field":"image","caption":"Изображение Таба","inputTV":"about_us_image", | |
| "sourceFrom":"MIGX"}, | |
| {"field":"title","caption":"Заголовок"}, | |
| {"field":"description","caption":"Описание","inputTVtype":"textarea"} | |
| ]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @media only screen and (max-width : 1199px){ | |
| } | |
| @media only screen and (max-width : 991px){ | |
| } | |
| @media only screen and (max-width : 767px){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>uniMail</title> | |
| </head> | |
| <body> | |
| <form> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @mixin tr($time){ | |
| transition: all $time ease; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| *::-webkit-input-placeholder{ | |
| color: $grey; | |
| } | |
| *:-moz-placeholder{ | |
| color: $grey; | |
| } | |
| *::-moz-placeholder{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @mixin ul-reset{ | |
| margin: 0; | |
| padding: 0; | |
| list-style-type: none; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php if (have_posts()) : while (have_posts()) : the_post(); ?> | |
| <!-- код сюда --> | |
| <?php endwhile; endif; ?> |