Skip to content

Instantly share code, notes, and snippets.

View Ysovuka's full-sized avatar

Joshua Thompson Ysovuka

View GitHub Profile
.site-wrap {
overflow: hidden;
width: 100%;
height: 100%;
}
#body-nav {
width: 100%;
position: fixed;
top: 0;
.site-wrap {
overflow: hidden;
width: 100%;
height: 100%;
}
.push-wrap {
-webkit-transition: all 300ms ease 0ms;
-moz-transition: all 300ms ease 0ms;
-o-transition: all 300ms ease 0ms;
.site-wrap {
overflow: hidden;
width: 100%;
height: 100%;
}
#body-nav {
-webkit-box-shadow: none!important;
-moz-box-shadow: none!important;
box-shadow: none!important;
.site-wrap {
overflow: hidden;
width: 100%;
height: 100%;
}
#body-nav {
-webkit-box-shadow: none!important;
-moz-box-shadow: none!important;
box-shadow: none!important;
/* Navigation Menu - Background */
.navigation {
/* critical sizing and position styles */
width: 100%;
height: 100%;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
/* Navigation Menu - Background */
.navigation {
/* critical sizing and position styles */
width: 100%;
height: 100%;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
body {
background: #020304;
}
body h1 {
position: fixed;
top: 40px;
left: 40px;
z-index: 6;
font-size: 20px;
font-weight: 900;
@Ysovuka
Ysovuka / FloatingActionButton.css
Created July 7, 2018 20:26
Floating Action Button implementation.
body {
background-color: #F2F2F2;
margin: 0;
max-height: 100vh;
}
.header {
background: #4285f4;
width: 100%;
height: 56px;
@Ysovuka
Ysovuka / RotatingCards.css
Created July 7, 2018 20:25
Rotating Cards in HTML
body {
margin-top: 60px;
font-size: 14px;
font-family: "Helvetica Nueue",Arial,Verdana,sans-serif;
background-color: #E5E9ED;
}
.btn:hover,
.btn:focus,
.btn:active{
outline: 0 !important;
@Ysovuka
Ysovuka / Singleton.h
Created July 7, 2018 20:23
Singleton implementation in c++
/*
Singleton.h
@purpose
Singleton template class used to create a singleton object.
@author
Joshua Thompson
@modified