Implementation for copay distribution sass.

This commit is contained in:
Andy Phillipson 2017-02-23 16:46:41 -05:00
commit 73a06b595f
105 changed files with 1150 additions and 480 deletions

View file

@ -1,11 +1,11 @@
#starting {
background: rgba(30, 49, 134, 1);
background: -moz-linear-gradient(top, rgba(30, 49, 134, 1) 0%, rgba(17, 27, 73, 1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(30, 49, 134, 1)), color-stop(100%, rgba(17, 27, 73, 1)));
background: -webkit-linear-gradient(top, rgba(30, 49, 134, 1) 0%, rgba(17, 27, 73, 1) 100%);
background: -o-linear-gradient(top, rgba(30, 49, 134, 1) 0%, rgba(17, 27, 73, 1) 100%);
background: -ms-linear-gradient(top, rgba(30, 49, 134, 1) 0%, rgba(17, 27, 73, 1) 100%);
background: linear-gradient(to bottom, rgba(30, 49, 134, 1) 0%, rgba(17, 27, 73, 1) 100%);
background: $v-primary-color;
background: -moz-linear-gradient(top, $v-primary-color 0%, $v-secondary-color 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, $v-primary-color), color-stop(100%, $v-secondary-color));
background: -webkit-linear-gradient(top, $v-primary-color 0%, $v-secondary-color 100%);
background: -o-linear-gradient(top, $v-primary-color 0%, $v-secondary-color 100%);
background: -ms-linear-gradient(top, $v-primary-color 0%, $v-secondary-color 100%);
background: linear-gradient(to bottom, $v-primary-color 0%, $v-secondary-color 100%);
color: #fff;
height: 100%;
.scroll-content {