css

Cascading Style Sheets


.class {

    transition: all 0.3s ease;

    box-shadow: 5px 5px 0px 0px rgba(0,0,0,0.7);

    text-shadow: 1px 1px 0px rgba(0,255,0,0.7);

    font-family: 'Lato', Arial, sans-serif;

}



.class {

    -vendor-prefix-something: awesome;

    something: awesome; /* unprefixed property should be the last */

}

 

.class {

    background-color: #baf07c; /* fallback for older browsers */

    background-color: rgba(177,242,52,0.6);

}

helper classes:


.gutter-left {

	padding-left: 10px;

}

.gutter-right {

	padding-right: 10px;

}

.gap {}

.stripe {}

.navbar {}

.menu-wrap {}

.header-wrap {}

.sidebar-wrap {}

.content-wrap {}

.footer-wrap {}

.xs {} // .extra-small {}

.sm {} // .small {}

.md {} // .medium {}

.lg {} // .large {}

.xl {} // .extra-large {}

Leave a Comment