Skip to content

Instantly share code, notes, and snippets.

@DriginCode
DriginCode / adaptive_video
Created February 8, 2017 20:55
adaptive_video
<div class="relation">
<div class="relation__offset relation__offset-16-9"></div>
<div class="relation__content">
<iframe class="video__content" src="https://www.youtube.com/embed/KFVoIzaGPYg" ></iframe>
</div>
</div>
.relation{
max-width: 560px;
position: relative;
@DriginCode
DriginCode / index.html
Created February 3, 2017 11:59
shadow_wt
<p class="shadow_wt"></p>
@DriginCode
DriginCode / index.html
Created January 10, 2017 20:11
footer_html
<footer id="footer">
<div class="container">
<div class="row">
<div class="col-xs-5 col-xs-offset-1">
<div class="h3_text">Контакты нашей службы заботы:</div>
<p><a class="tel" href="tel:88003500308" class="tel" spfieldtype="null">8 800 3500 308</a></p>
<p class="email">Наша почта: support@igormerlin.com</p>
</div>
<div class="col-xs-5">
@DriginCode
DriginCode / index.html
Created November 7, 2016 15:45
start html code & css
<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html lang="ru"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<title>Расписание занятий тренинга 3 ДЕНЕЖНЫХ ПЛАГИНА для управления Вселенной</title>
<meta name="description" content="">
<link rel="shortcut icon" href="img/favicon/favicon.ico" type="image/x-icon">
@DriginCode
DriginCode / responsive-image.html
Created October 21, 2016 09:32
responsive-image
Если ты используешь картинку как фон в header используй:
header{
background:url(path_to_your_image) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
height: 100px;
}
@DriginCode
DriginCode / media.css
Created October 20, 2016 21:53
mediacss-menu
/* Extra Small Devices, Phones */
@media only screen and (max-width : 479px) {
.main_menu ul {
display: none;
width:100%;
background-color: #9d8a71;
}
.main_menu ul li {
display: block;
@DriginCode
DriginCode / main.css
Created October 20, 2016 21:52
menucss
.main_menu {
background-color: #9d8a71;
color: #000;
text-align:center;
}
.main_menu a {
color: #000;
padding:5px 20px;
display: block;
<nav class="main_menu">
<div class="container">
<div class="row">
<button class="main_menu_button hidden-lg hidden-md hidden-sm"><i class="fa fa-bars" aria-hidden="true"></i></button>
<ul>
<li class="active"><a href="#">HOME</a></li>
<li><a href="#">PHOTO</a></li>
<li><a href="#">VIDEO</a></li>
<li><a href="#">ABOUT</a></li>
@DriginCode
DriginCode / common.js
Last active October 16, 2016 16:37
Jquery resize height
$(document).ready(function() {
function heightDetect() {
$(".main_head").css("height", $(window).height());
};
heightDetect();
$(window).resize(function() {
heightDetect();
});
});
@DriginCode
DriginCode / main.css
Last active October 16, 2016 15:35
preloader
.loader {
background: none repeat scroll 0 0 #ffffff;
bottom: 0;
height: 100%;
left: 0;
position: fixed;
right: 0;
top: 0;
width: 100%;
z-index: 9999; }