Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@tarun-nagpal-github
Created February 5, 2019 11:00
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 tarun-nagpal-github/2da0eb705a1bda3b8df398859f058aa2 to your computer and use it in GitHub Desktop.
Save tarun-nagpal-github/2da0eb705a1bda3b8df398859f058aa2 to your computer and use it in GitHub Desktop.
.qr-scan{
.navbar-ctr {
padding: 16px 0 0 15px;
width: 100%;
font-size: 21px;
color: color($colors, light);
font-weight: bolder;
}
.back-arrow {
width: 16px;
height: 16px;
float: left;
margin-right: 18px;
}
.scan-qr-text {
width: 190px;
height: 24px;
font-family: Roboto;
font-size: 20px;
font-weight: 500;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
}
.container {
height: 100%;
padding: 0;
}
.hide {
display: none;
}
.faded-row {
padding: 0;
background-color: color($colors, black);
opacity: 0.5;
}
.height-20 {
height: 19%;
}
.height-30 {
height: 30%;
}
.height-40 {
height: 40%;
}
.padding-0 {
padding: 0;
}
.red-lazer {
background-color: color($colors, lazer);
height: 1px;
animation: scanning 4s infinite;
}
.scroll-content {
overflow-y: hidden;
}
@-webkit-keyframes scanning {
50% {
-webkit-transform: translateY(240px);
transform: translateY(240px);
}
}
@keyframes scanning {
50% {
-webkit-transform: translateY(240px);
transform: translateY(240px);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment