Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ivanmarkovich/b018f92b9b32b46cbf3a864496175eee to your computer and use it in GitHub Desktop.
Save ivanmarkovich/b018f92b9b32b46cbf3a864496175eee to your computer and use it in GitHub Desktop.
general sets
html {
color: #fff;
font-size: 10px;
line-height: 1.2;
background-color: #aeaeae;
}
html,body {
overflow-x:hidden;
color:#fff;
line-height: 1.2;
}
a, a:hover {
text-decoration: none;
color:inherit;
}
input:active, input:focus {
outline:none;
}
button, button:focus, button:active {
border:none;
outline:none;
cursor:pointer;
}
p {
margin-bottom: 0;
}
ul {
padding-left: 0;
margin-bottom: 0;
}
textarea {
resize: vertical;
}
select {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
h2,h3,h4,h5,h6 {
margin-top: 0;
margin-bottom: 0;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
font-weight: 700;
}
.slick-active, .slick-slide {
outline: none !important;
}
label.error {
display: none !important;
}
.contain {
background-position: center center;
background-repeat: no-repeat;
-webkit-background-size: contain;
background-size: contain;
}
.cover {
background-position: center center;
background-repeat: no-repeat;
-webkit-background-size: cover;
background-size: cover;
}
.img-cover{height:100px;width:200px; overflow: hidden;}
.wh{height:100%!important}
.ww{width:100%!important}
/*====== Screen-Size ====== */
$screen-iphone-max: 480px;
$screen-xs-max: 767px;
$screen-sm-min: 768px;
$screen-sm-max: 991px;
$screen-md-min: 992px;
$screen-md-max: 1199px;
$screen-lg-min: 1200px;
// =========================== Colors =========================
/*========= Media ========= */
/*
* Remove text-shadow in selection highlight:
* https://twitter.com/miketaylr/status/12228805301
*
* Vendor-prefixed and regular ::selection selectors cannot be combined:
* https://stackoverflow.com/a/16982510/7133471
*
* Customize the background color to match your design.
*/
::-moz-selection {
background: #b3d4fc;
text-shadow: none;
}
::selection {
background: #b3d4fc;
text-shadow: none;
}
/*
* A better looking default horizontal rule
*/
hr {
display: block;
height: 1px;
border: 0;
border-top: 1px solid #ccc;
margin: 1em 0;
padding: 0;
}
/*
* Remove the gap between audio, canvas, iframes,
* images, videos and the bottom of their containers:
* https://github.com/h5bp/html5-boilerplate/issues/440
*/
audio,
canvas,
iframe,
img,
svg,
video {
vertical-align: middle;
}
/*
* Remove default fieldset styles.
*/
fieldset {
border: 0;
margin: 0;
padding: 0;
}
/*
* Allow only vertical resizing of textareas.
*/
textarea {
resize: vertical;
}
body,html {
}
/* ==========================================================================
Browser Upgrade Prompt
========================================================================== */
.browserupgrade {
margin: 0.2em 0;
background: #ccc;
color: #000;
padding: 0.2em 0;
}
.no-indent {
text-indent: 0 !important;
}
@media (max-width: 767px) {
.no-xs-padding {
padding-left: 0;
padding-right: 0;
}
}
@import 'header';
@import 'exclusive-body';
@import 'footer';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment