2018-10-25 23:49:22 +00:00
|
|
|
@tailwind preflight;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
2018-10-25 02:07:10 +00:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
progress {
|
|
|
|
@apply bg-grey-light;
|
|
|
|
@apply rounded-sm;
|
|
|
|
@apply w-full;
|
|
|
|
@apply h-1;
|
|
|
|
}
|
|
|
|
|
|
|
|
progress::-moz-progress-bar {
|
|
|
|
@apply bg-blue;
|
|
|
|
@apply rounded-sm;
|
|
|
|
}
|
|
|
|
|
|
|
|
progress::-webkit-progress-bar {
|
|
|
|
@apply bg-grey-light;
|
|
|
|
@apply rounded-sm;
|
|
|
|
@apply w-full;
|
|
|
|
@apply h-1;
|
|
|
|
}
|
|
|
|
|
|
|
|
progress::-webkit-progress-value {
|
|
|
|
@apply bg-blue;
|
|
|
|
@apply rounded-sm;
|
|
|
|
}
|
|
|
|
|
2018-11-05 23:46:49 +00:00
|
|
|
.word-break-all {
|
|
|
|
word-break: break-all;
|
|
|
|
}
|
|
|
|
|
2018-10-25 02:07:10 +00:00
|
|
|
.main {
|
2018-11-02 09:27:59 +00:00
|
|
|
display: flex;
|
2018-11-02 18:28:56 +00:00
|
|
|
max-width: 64rem;
|
2018-11-02 09:27:59 +00:00
|
|
|
width: 100%;
|
2018-11-05 08:12:40 +00:00
|
|
|
height: 100%;
|
2018-11-02 09:27:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.main > section {
|
|
|
|
@apply bg-white;
|
2018-11-05 08:12:40 +00:00
|
|
|
}
|
|
|
|
|
2018-10-25 02:07:10 +00:00
|
|
|
.header-logo {
|
2018-11-05 08:12:40 +00:00
|
|
|
background-image: url('../assets/send_logo_white.svg');
|
2018-10-25 02:07:10 +00:00
|
|
|
background-position: left;
|
|
|
|
background-repeat: no-repeat;
|
2018-11-02 09:27:59 +00:00
|
|
|
background-size: 1.8rem;
|
|
|
|
padding-left: 2.4rem;
|
2018-10-25 02:07:10 +00:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2018-11-02 09:27:59 +00:00
|
|
|
.header-logo h1 {
|
|
|
|
font-size: 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mozilla-logo {
|
|
|
|
background-image: url('../assets/mozilla-logo.svg');
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: 100px, 32px;
|
|
|
|
overflow: hidden;
|
|
|
|
text-indent: 120%;
|
|
|
|
white-space: nowrap;
|
|
|
|
display: inline-block;
|
|
|
|
height: 32px;
|
|
|
|
width: 100px;
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
|
|
|
|
2018-10-25 02:07:10 +00:00
|
|
|
.feedback-link {
|
|
|
|
background-color: #000;
|
|
|
|
background-image: url('../assets/feedback.svg');
|
|
|
|
background-position: 0.125rem 0.25rem;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: 1.125rem;
|
|
|
|
color: #fff;
|
|
|
|
display: block;
|
|
|
|
font-size: 0.75rem;
|
|
|
|
line-height: 0.75rem;
|
|
|
|
padding: 0.375rem 0.375rem 0.375rem 1.25rem;
|
|
|
|
text-indent: 0.125rem;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2018-10-30 02:06:15 +00:00
|
|
|
.checkbox {
|
|
|
|
@apply leading-normal;
|
|
|
|
@apply select-none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.checkbox > input[type='checkbox'] {
|
|
|
|
@apply absolute;
|
|
|
|
@apply opacity-0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.checkbox > label {
|
|
|
|
@apply cursor-pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.checkbox > label::before {
|
|
|
|
@apply bg-blue-lightest;
|
|
|
|
@apply border;
|
|
|
|
@apply rounded-sm;
|
|
|
|
|
|
|
|
content: '';
|
|
|
|
height: 1.5rem;
|
|
|
|
width: 1.5rem;
|
|
|
|
margin-right: 0.5rem;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.checkbox > label:hover::before {
|
|
|
|
@apply border-blue;
|
|
|
|
}
|
|
|
|
|
|
|
|
.checkbox > input:focus + label::before {
|
|
|
|
@apply border-blue;
|
|
|
|
}
|
|
|
|
|
|
|
|
.checkbox > input:checked + label::before {
|
|
|
|
background-image: url('../assets/lock.svg');
|
|
|
|
background-position: center;
|
|
|
|
background-size: 1.25rem;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
.checkbox > input:disabled + label {
|
|
|
|
cursor: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.checkbox > input:disabled + label::before {
|
|
|
|
background-image: url('../assets/lock.svg');
|
|
|
|
background-position: center;
|
|
|
|
background-size: 1.25rem;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
cursor: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#password-msg::after {
|
|
|
|
content: '\200b';
|
|
|
|
}
|
|
|
|
|
2018-10-25 02:07:10 +00:00
|
|
|
@screen md {
|
|
|
|
.main {
|
|
|
|
@apply flex-1;
|
|
|
|
@apply self-center;
|
2018-11-02 09:27:59 +00:00
|
|
|
@apply items-center;
|
2018-11-05 22:19:26 +00:00
|
|
|
@apply m-auto;
|
|
|
|
@apply py-8;
|
2018-10-25 02:07:10 +00:00
|
|
|
|
2018-11-05 22:19:26 +00:00
|
|
|
min-height: 33rem;
|
2018-10-25 20:28:06 +00:00
|
|
|
max-height: 40rem;
|
2018-11-05 08:12:40 +00:00
|
|
|
width: calc(100% - 3rem);
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-logo {
|
|
|
|
background-image: url('../assets/send_logo.svg');
|
2018-10-25 02:07:10 +00:00
|
|
|
}
|
2018-11-02 09:27:59 +00:00
|
|
|
|
|
|
|
.main > section {
|
|
|
|
@apply shadow-md;
|
|
|
|
}
|
2018-10-25 02:07:10 +00:00
|
|
|
}
|
2018-12-13 16:36:03 +00:00
|
|
|
|
|
|
|
.rounded-device {
|
|
|
|
border-radius: 0.25rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.px-4-device {
|
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-device-width: 576px) {
|
|
|
|
.rounded-device {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.px-4-device {
|
|
|
|
padding-left: 1rem;
|
|
|
|
padding-right: 1rem;
|
|
|
|
}
|
|
|
|
}
|