You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			367 lines
		
	
	
		
			6.6 KiB
		
	
	
	
		
			SCSS
		
	
			
		
		
	
	
			367 lines
		
	
	
		
			6.6 KiB
		
	
	
	
		
			SCSS
		
	
@import 'variables';
 | 
						|
@import 'intlTelInput';
 | 
						|
.iti-flag {
 | 
						|
  // override intlTelInput's flags image location
 | 
						|
  background: url("/images/flags.png");
 | 
						|
}
 | 
						|
 | 
						|
* {
 | 
						|
  box-sizing: border-box;
 | 
						|
}
 | 
						|
 | 
						|
html,body {
 | 
						|
  height: 100%;
 | 
						|
}
 | 
						|
body {
 | 
						|
  margin: 0;
 | 
						|
  font-family: $roboto;
 | 
						|
  position: relative;
 | 
						|
  background: #2090ea;
 | 
						|
  color: white;
 | 
						|
  text-align: center;
 | 
						|
  font-size: 16px;
 | 
						|
  overflow: auto;
 | 
						|
}
 | 
						|
 | 
						|
.clearfix:before,
 | 
						|
.clearfix:after {
 | 
						|
  display: table;
 | 
						|
  content: " ";
 | 
						|
}
 | 
						|
.clearfix:after {
 | 
						|
  clear: both;
 | 
						|
}
 | 
						|
 | 
						|
input, button, select, textarea {
 | 
						|
  font-family: inherit;
 | 
						|
  font-size: inherit;
 | 
						|
  line-height: inherit;
 | 
						|
}
 | 
						|
 | 
						|
#install {
 | 
						|
  display: none;
 | 
						|
}
 | 
						|
.main {
 | 
						|
  padding: 70px 0 10em;
 | 
						|
}
 | 
						|
.step {
 | 
						|
  display: none;
 | 
						|
}
 | 
						|
 | 
						|
#signal-computer,
 | 
						|
#signal-phone {
 | 
						|
  max-width: 50%;
 | 
						|
  max-height: 250px;
 | 
						|
}
 | 
						|
 | 
						|
p {
 | 
						|
  max-width: 30em;
 | 
						|
  margin: 1em auto;
 | 
						|
  line-height: 1.5em;
 | 
						|
  font-size: 1.2em;
 | 
						|
  font-weight: bold;
 | 
						|
}
 | 
						|
 | 
						|
a {
 | 
						|
  cursor: pointer;
 | 
						|
  &, &:visited, &:hover {
 | 
						|
    text-decoration: none;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
.button {
 | 
						|
  display: inline-block;
 | 
						|
  text-transform: uppercase;
 | 
						|
  border: none;
 | 
						|
  font-weight: bold;
 | 
						|
  min-width: 300px;
 | 
						|
  padding: 0.5em;
 | 
						|
  margin: 0.5em 0;
 | 
						|
  background: white;
 | 
						|
  color: $blue;
 | 
						|
}
 | 
						|
 | 
						|
.nav {
 | 
						|
  width: 100%;
 | 
						|
  position: fixed;
 | 
						|
  bottom: 50px;
 | 
						|
  margin-top: 2em;
 | 
						|
  padding: 0 20px;
 | 
						|
 | 
						|
  .button {
 | 
						|
    margin-bottom: 3em;
 | 
						|
  }
 | 
						|
 | 
						|
  .dot {
 | 
						|
    display: inline-block;
 | 
						|
    cursor: pointer;
 | 
						|
    margin: 10px;
 | 
						|
    width: 20px;
 | 
						|
    height: 20px;
 | 
						|
    border-radius: 10px;
 | 
						|
    background: white;
 | 
						|
    border: solid 5px $blue;
 | 
						|
 | 
						|
    &.selected {
 | 
						|
      background: $blue_l;
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
.link {
 | 
						|
  &:hover, &:focus {
 | 
						|
    background: rgba(255,255,255,0.3);
 | 
						|
    outline: none;
 | 
						|
  }
 | 
						|
  &, &:visited, &:hover {
 | 
						|
    padding: 0 3px;
 | 
						|
    color: white;
 | 
						|
    font-weight: bold;
 | 
						|
    border-bottom: dashed 2px white;
 | 
						|
    text-decoration: none;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
.container {
 | 
						|
  min-width: 650px;
 | 
						|
}
 | 
						|
 | 
						|
h1 {
 | 
						|
  font-size: 30pt;
 | 
						|
  font-weight: normal;
 | 
						|
  padding-bottom: 10px;
 | 
						|
}
 | 
						|
 | 
						|
#signal-icon {
 | 
						|
  margin-top: 20px;
 | 
						|
}
 | 
						|
 | 
						|
h3.step {
 | 
						|
  margin-top: 0;
 | 
						|
  font-weight: bold;
 | 
						|
}
 | 
						|
 | 
						|
.help {
 | 
						|
  border-top: 2px solid $grey_l;
 | 
						|
  padding: 1.5em 0.1em;
 | 
						|
}
 | 
						|
 | 
						|
.install {
 | 
						|
  display: inline-block;
 | 
						|
  margin-top: 90px;
 | 
						|
}
 | 
						|
 | 
						|
#qr {
 | 
						|
  display: inline-block;
 | 
						|
  min-height: 266px;
 | 
						|
  img {
 | 
						|
    border: 5px solid white;
 | 
						|
  }
 | 
						|
 | 
						|
  canvas {
 | 
						|
    display: none;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
#device-name {
 | 
						|
  border: none;
 | 
						|
  border-bottom: 1px solid white;
 | 
						|
  padding: 8px;
 | 
						|
  background: transparent;
 | 
						|
  color: white;
 | 
						|
  font-weight: bold;
 | 
						|
  text-align: center;
 | 
						|
  &::selection, a::selection {
 | 
						|
    color: $grey_d;
 | 
						|
    background: white;
 | 
						|
  }
 | 
						|
 | 
						|
  &::-moz-selection, a::-moz-selection {
 | 
						|
    color: $grey_d;
 | 
						|
    background: white;
 | 
						|
  }
 | 
						|
 | 
						|
  &:focus {
 | 
						|
    outline: none;
 | 
						|
  }
 | 
						|
 | 
						|
  &:hover, &:focus {
 | 
						|
    background: rgba(255,255,255,0.1);
 | 
						|
  }
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
#verifyCode,
 | 
						|
#code,
 | 
						|
#number {
 | 
						|
  box-sizing: border-box;
 | 
						|
  width: 100%;
 | 
						|
  display: block;
 | 
						|
  margin-bottom: 0.5em;
 | 
						|
  text-align: center;
 | 
						|
}
 | 
						|
 | 
						|
#request-voice,
 | 
						|
#request-sms {
 | 
						|
  box-sizing: border-box;
 | 
						|
}
 | 
						|
#request-sms {
 | 
						|
  width: 57%;
 | 
						|
  float: right;
 | 
						|
}
 | 
						|
#request-voice {
 | 
						|
  width: 40%;
 | 
						|
  float: left;
 | 
						|
}
 | 
						|
 | 
						|
.number-container {
 | 
						|
  position: relative;
 | 
						|
  margin-bottom: 0.5em;
 | 
						|
}
 | 
						|
.number-container .intl-tel-input,
 | 
						|
.number-container .number {
 | 
						|
  width: 100%;
 | 
						|
}
 | 
						|
.number-container::after {
 | 
						|
  visibility: hidden;
 | 
						|
  content: ' ';
 | 
						|
  display: inline-block;
 | 
						|
  border-radius: 1.5em;
 | 
						|
  width: 1.5em;
 | 
						|
  height: 1.5em;
 | 
						|
  line-height: 1.5em;
 | 
						|
  color: #ffffff;
 | 
						|
  position: absolute;
 | 
						|
  top: 0;
 | 
						|
  left: 100%;
 | 
						|
  margin: 3px 8px;
 | 
						|
  text-align: center;
 | 
						|
}
 | 
						|
.number-container.valid::after {
 | 
						|
  visibility: visible;
 | 
						|
  content: '✓';
 | 
						|
  background-color: #0f9d58;
 | 
						|
  color: #ffffff;
 | 
						|
}
 | 
						|
.number-container.invalid::after {
 | 
						|
  visibility: visible;
 | 
						|
  content: '!';
 | 
						|
  background-color: #f44336;
 | 
						|
  color: #ffffff;
 | 
						|
}
 | 
						|
 | 
						|
#error {
 | 
						|
  color: white;
 | 
						|
  font-weight: bold;
 | 
						|
  padding: 0.5em;
 | 
						|
  text-align: center;
 | 
						|
}
 | 
						|
#error   { background-color: #f44336; }
 | 
						|
#error:before {
 | 
						|
  content: '\26a0';
 | 
						|
  padding-right: 0.5em;
 | 
						|
}
 | 
						|
.narrow {
 | 
						|
  margin: auto;
 | 
						|
  box-sizing: border-box;
 | 
						|
  width: 275px;
 | 
						|
  max-width: 100%;
 | 
						|
}
 | 
						|
 | 
						|
ul.country-list {
 | 
						|
  min-width: 197px !important;
 | 
						|
}
 | 
						|
 | 
						|
.confirmation-dialog, .progress-dialog, .error-dialog {
 | 
						|
  padding: 1em;
 | 
						|
  text-align: left;
 | 
						|
}
 | 
						|
.number { text-align: center; }
 | 
						|
.confirmation-dialog, .error-dialog {
 | 
						|
  button {
 | 
						|
    float: right;
 | 
						|
    margin-left: 10px;
 | 
						|
  }
 | 
						|
}
 | 
						|
@keyframes progress-bar-stripes {
 | 
						|
  from {
 | 
						|
    background-position: 40px 0;
 | 
						|
  }
 | 
						|
  to {
 | 
						|
    background-position: 0 0;
 | 
						|
  }
 | 
						|
}
 | 
						|
.progress-bar-striped {
 | 
						|
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .75) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .75) 50%, rgba(255, 255, 255, .75) 75%, transparent 75%, transparent);
 | 
						|
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .75) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .75) 50%, rgba(255, 255, 255, .75) 75%, transparent 75%, transparent);
 | 
						|
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .75) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .75) 50%, rgba(255, 255, 255, .75) 75%, transparent 75%, transparent);
 | 
						|
  -webkit-background-size: 40px 40px;
 | 
						|
          background-size: 40px 40px;
 | 
						|
}
 | 
						|
.progress-bar-striped {
 | 
						|
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .75) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .75) 50%, rgba(255, 255, 255, .75) 75%, transparent 75%, transparent);
 | 
						|
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .75) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .75) 50%, rgba(255, 255, 255, .75) 75%, transparent 75%, transparent);
 | 
						|
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .75) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .75) 50%, rgba(255, 255, 255, .75) 75%, transparent 75%, transparent);
 | 
						|
}
 | 
						|
.progress-bar.active {
 | 
						|
  -webkit-animation: progress-bar-stripes 2s linear infinite;
 | 
						|
       -o-animation: progress-bar-stripes 2s linear infinite;
 | 
						|
          animation: progress-bar-stripes 2s linear infinite;
 | 
						|
}
 | 
						|
.progress-dialog {
 | 
						|
  text-align: center;
 | 
						|
  padding: 1em;
 | 
						|
  max-width: 600px;
 | 
						|
  margin: auto;
 | 
						|
 | 
						|
  .status { padding: 1em; }
 | 
						|
 | 
						|
  .bar-container {
 | 
						|
    height: 1em;
 | 
						|
    background-color: $grey_l;
 | 
						|
    border: solid 1px white;
 | 
						|
  }
 | 
						|
  .bar {
 | 
						|
    width: 0;
 | 
						|
    height: 100%;
 | 
						|
    background-color: $blue_l;
 | 
						|
    transition: width 0.25s;
 | 
						|
 | 
						|
    &.active {
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
.error-dialog {
 | 
						|
  display: none;
 | 
						|
}
 | 
						|
 | 
						|
.modal-container {
 | 
						|
  display: none;
 | 
						|
  position: absolute;
 | 
						|
  width: 100%;
 | 
						|
  height: 100%;
 | 
						|
  background: rgba(0,0,0,0.1);
 | 
						|
  top: 0;
 | 
						|
  padding-top: 10em;
 | 
						|
  text-align: center;
 | 
						|
 | 
						|
  .modal-main {
 | 
						|
    display: inline-block;
 | 
						|
    width: 80%;
 | 
						|
    max-width: 500px;
 | 
						|
    border: solid 2px $blue;
 | 
						|
    background: white;
 | 
						|
    margin: 10% auto;
 | 
						|
    box-shadow: 0 0 5px 3px rgba(darken($blue, 30%), 0.2);
 | 
						|
 | 
						|
    h4 {
 | 
						|
      background-color: $blue;
 | 
						|
      color: white;
 | 
						|
      padding: 1em;
 | 
						|
      margin: 0;
 | 
						|
      text-align: left;
 | 
						|
    }
 | 
						|
 | 
						|
  }
 | 
						|
}
 |