Skip to content

Instantly share code, notes, and snippets.

View gearmobile's full-sized avatar
🇷🇺
Working remotely

Valery Semenenko gearmobile

🇷🇺
Working remotely
View GitHub Profile
@gearmobile
gearmobile / Snippet Sublime Text
Last active August 29, 2015 14:07
Snippet Sublime Text
<snippet>
<content><![CDATA[
<!-- begin $1 -->
<div class="$1">
$2
</div>
<!-- end $1 -->
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>di</tabTrigger>
@gearmobile
gearmobile / Background Center Viewport
Last active August 29, 2015 14:10
Фоновое изображение по центру viewport
html
{
width: 100%;
height: 100%;
background: fixed #000 url(../img/bg.jpg) 50% 50% no-repeat;
background-size: 100% auto; /* responsive image */
}
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
@gearmobile
gearmobile / Image responsive
Last active August 29, 2015 14:10
Image Responsive
.img-responsive {
display: block;
width: 100%;
height: auto;
}
@gearmobile
gearmobile / accordeon
Created May 28, 2015 17:57
jQuery Accordion
HTML:
<div class="accordeon">
<dl>
<dt>Заголовок</dt>
<dd>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam ea, accusamus. Numquam non commodi ipsum debitis repudiandae amet vero itaque, deserunt, ad neque libero quae officia. Facilis non, possimus doloribus! Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aliquid quis voluptatem repellat? Blanditiis iste, exercitationem porro, magni amet cupiditate enim, labore tenetur, praesentium quam consequuntur nesciunt. Culpa dicta adipisci voluptatem.</dd>
</dl>
<dl>
<dt>Заголовок</dt>
<dd>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aliquid quis voluptatem repellat? Blanditiis iste, exercitationem porro, magni amet cupiditate enim, labore tenetur, praesentium quam consequuntur nesciunt. Culpa dicta adipisci voluptatem.</dd>
</dl>
@gearmobile
gearmobile / jquery-tabs
Created May 28, 2015 18:03
jQuery Simple Tabs
HTML:
<div class="wrapper">
<div class="tabs">
<span class="tab">Вкладка 1</span>
<span class="tab">Вкладка 2</span>
<span class="tab">Вкладка 3</span>
</div>
<div class="tab_content">
<div class="tab_item">Содержимое 1</div>
<div class="tab_item">Содержимое 2</div>
@gearmobile
gearmobile / jquery-tabs
Created May 28, 2015 18:28
jQuery Tabs
HTML:
<div class="wrapper">
<div class="tabs">
<span class="tab">Вкладка 1</span>
<span class="tab">Вкладка 2</span>
<span class="tab">Вкладка 3</span>
</div>
<div class="tab_content">
<div class="tab_item">Содержимое 1</div>
<div class="tab_item">Содержимое 2</div>
@gearmobile
gearmobile / fixed-width-height
Created May 28, 2015 18:38
Element has fixed width and height
.parent {
position: relative;
}
.child {
width: 300px;
height: 100px;
padding: 20px;
position: absolute;
@gearmobile
gearmobile / unknown-width-and-height
Created May 28, 2015 19:00
Element has unknown width and height
.parent {
position: relative;
}
.child {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
@gearmobile
gearmobile / unknown-width-and-height-flexbox
Created May 28, 2015 19:02
Element has unknown width and height - flexbox
.parent {
display: flex;
justify-content: center;
align-items: center;
}