Sha256: 74e936235d2e94a666aea7d78daac2173d43f716ddffb061c25c63f01a869a5b

Contents?: true

Size: 1.54 KB

Versions: 4

Compression:

Stored size: 1.54 KB

Contents

/* HTML and body */
html, .pure-g [class *= "pure-u"] {
	font-family: $font-family-serif;
	font-size: $font-size-main;
}

@media (min-width: 48em) {
    html {
        font-size: $font-size-bigger;
    }
}

::selection,  {
    background-color: $color-main-lighter; /* WebKit/Blink Browsers */
}
::-moz-selection {
    background-color: $color-main-lighter; /* Gecko Browsers */
}

body {
	color: $color-gray-dark;
	background-color: $color-white;
	line-height: 1.618;
}

@media (max-width: 48em) {
    .wrapper {
        padding: 0 1.5rem;
    }
}

.pure-g {
    display: flex;
}

/* Global tags */
p { margin: 0 0 1.6rem; }

a {
    color: $color-link;
    text-decoration: none;
    position: relative;
    @include transition(all, .2s, ease-in-out);
    
    &:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        bottom: 0;
        left: 0;
        background-color: $color-link-hover;
        visibility: hidden;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        @include transition(all, .2s, ease-in-out);
    }
    
    &:hover {
        color: $color-link-hover;
        
        &:before {
            visibility: visible;
            -webkit-transform: scaleX(1);
            transform: scaleX(1);
        }
    }
}

/* Helpers */
.text-center { 
    text-align: center; 
}
.sr-only {
    display: none;
}

.wrapper {
    max-width: $site-base-width;
    margin: 0 auto;
}

/* Miscellanous */
.tweets iframe {
    width: 100% !important;
}
.embed-responsive {
    margin-bottom: 1.6rem;
}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
krad-3.6.0 _sass/base/_main.scss
krad-3.5.2 _sass/base/_main.scss
krad-3.5.1 _sass/base/_main.scss
krad-3.5.0 _sass/base/_main.scss