24
1
Fork 0
drop.chapril.org-firefoxsend/app/main.css

381 lines
6.4 KiB
CSS
Raw Normal View History

2019-06-14 20:30:43 +02:00
@tailwind base;
html {
line-height: 1.15;
}
2018-10-26 01:49:22 +02:00
@tailwind components;
2019-01-16 21:38:43 +01:00
:not(input) {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
2018-10-25 04:07:10 +02:00
:root {
--violet-gradient: linear-gradient(
-180deg,
rgba(144, 89, 255, 0.8) 0%,
rgba(144, 89, 255, 0.4) 100%
);
}
2018-10-25 04:07:10 +02:00
a {
color: inherit;
text-decoration: none;
}
2019-02-21 00:58:44 +01:00
a:focus {
outline: 1px dotted grey;
}
2019-02-11 22:48:06 +01:00
body {
background-image: url('../assets/bg.svg');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
2019-03-12 21:35:25 +01:00
overflow-x: hidden;
2019-02-11 22:48:06 +01:00
}
2019-01-16 21:38:43 +01:00
.btn {
2019-02-11 22:48:06 +01:00
@apply bg-blue-dark;
2019-01-16 21:38:43 +01:00
@apply text-white;
@apply cursor-pointer;
2019-02-22 22:59:57 +01:00
@apply py-4;
2019-01-16 21:38:43 +01:00
@apply px-6;
2019-05-03 18:26:10 +02:00
@apply font-semibold;
2018-10-25 04:07:10 +02:00
}
2019-01-16 21:38:43 +01:00
.btn:hover {
2019-02-11 22:48:06 +01:00
@apply bg-blue-darker;
2018-11-02 10:27:59 +01:00
}
2019-01-16 21:38:43 +01:00
.btn:focus {
2019-02-11 22:48:06 +01:00
@apply bg-blue-darker;
2018-10-25 04:07:10 +02:00
}
2018-10-30 03:06:15 +01: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 {
2019-02-11 22:48:06 +01:00
/* @apply bg-grey-lightest; */
2018-10-30 03:06:15 +01:00
@apply border;
@apply rounded-sm;
content: '';
height: 1.5rem;
width: 1.5rem;
margin-right: 0.5rem;
float: left;
}
.checkbox > label:hover::before {
2019-02-11 22:48:06 +01:00
@apply border-blue-dark;
2018-10-30 03:06:15 +01:00
}
.checkbox > input:focus + label::before {
2019-02-11 22:48:06 +01:00
@apply border-blue-dark;
2018-10-30 03:06:15 +01:00
}
.checkbox > input:checked + label::before {
2019-02-11 22:48:06 +01:00
@apply bg-blue-dark;
@apply border-blue-dark;
2018-10-30 03:06:15 +01:00
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 {
2019-02-11 22:48:06 +01:00
@apply bg-blue-dark;
@apply border-blue-dark;
2018-10-30 03:06:15 +01:00
background-image: url('../assets/lock.svg');
background-position: center;
background-size: 1.25rem;
background-repeat: no-repeat;
cursor: auto;
}
2019-01-29 21:06:23 +01:00
details {
overflow: hidden;
}
details > summary::-webkit-details-marker {
display: none;
}
details > summary > svg {
transition: all 0.25s cubic-bezier(0.07, 0.95, 0, 1);
}
2019-01-29 21:06:23 +01:00
details[open] {
overflow-y: auto;
}
details[open] > summary > svg {
transform: rotate(90deg);
}
2019-01-29 21:06:23 +01:00
footer li:hover {
text-decoration: underline;
}
2019-01-16 21:38:43 +01: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 03:06:15 +01:00
}
2019-05-03 18:26:10 +02:00
.main-header img {
height: 32px;
width: 170px;
}
2019-02-15 01:16:30 +01:00
.intro {
2019-02-19 20:25:40 +01:00
max-width: 100%;
2019-02-15 01:16:30 +01:00
height: unset;
}
2019-01-16 21:38:43 +01:00
.main {
display: flex;
2019-02-22 22:31:54 +01:00
position: relative;
2019-01-16 21:38:43 +01:00
max-width: 64rem;
width: 100%;
height: 100%;
}
2018-11-02 10:27:59 +01:00
2019-01-16 21:38:43 +01:00
.main > section {
@apply bg-white;
2018-10-25 04:07:10 +02:00
}
2019-01-16 21:38:43 +01:00
.mozilla-logo {
background-image: url('../assets/mozilla-logo.svg');
background-repeat: no-repeat;
2019-05-03 18:26:10 +02:00
background-size: 100px, 48px;
2019-01-16 21:38:43 +01:00
overflow: hidden;
text-indent: 120%;
white-space: nowrap;
display: inline-block;
height: 32px;
width: 100px;
flex-shrink: 0;
}
2019-01-16 21:38:43 +01:00
#password-msg::after {
content: '\200b';
}
2019-01-16 21:38:43 +01:00
progress {
@apply bg-grey-light;
@apply rounded-sm;
@apply w-full;
@apply h-1;
}
2019-01-16 21:38:43 +01:00
progress::-webkit-progress-bar {
@apply bg-grey-light;
@apply rounded-sm;
@apply w-full;
@apply h-1;
}
2019-01-11 10:15:03 +01:00
2019-01-16 21:38:43 +01:00
progress::-webkit-progress-value {
2019-01-11 10:15:03 +01:00
/* stylelint-disable */
background-image: -webkit-linear-gradient(
-45deg,
transparent 20%,
rgba(255, 255, 255, 0.4) 20%,
rgba(255, 255, 255, 0.4) 40%,
transparent 40%,
transparent 60%,
rgba(255, 255, 255, 0.4) 60%,
rgba(255, 255, 255, 0.4) 80%,
transparent 80%
),
-webkit-linear-gradient(left, #0a84ff, #0a84ff);
/* stylelint-enable */
border-radius: 2px;
background-size: 21px 20px, 100% 100%, 100% 100%;
-webkit-animation: animate-stripes 1s linear infinite;
}
2019-01-16 21:38:43 +01:00
progress::-moz-progress-bar {
2019-01-11 10:15:03 +01:00
/* stylelint-disable */
background-image: -moz-linear-gradient(
135deg,
transparent 20%,
rgba(255, 255, 255, 0.4) 20%,
rgba(255, 255, 255, 0.4) 40%,
transparent 40%,
transparent 60%,
rgba(255, 255, 255, 0.4) 60%,
rgba(255, 255, 255, 0.4) 80%,
transparent 80%
),
-moz-linear-gradient(left, #0a84ff, #0a84ff);
/* stylelint-enable */
border-radius: 2px;
background-size: 21px 20px, 100% 100%, 100% 100%;
animation: animate-stripes 1s linear infinite;
}
@-webkit-keyframes animate-stripes {
100% {
background-position: -21px 0;
}
}
@keyframes animate-stripes {
100% {
background-position: -21px 0;
}
}
2019-02-13 20:14:53 +01:00
select {
background-image: url('../assets/select-arrow.svg');
background-position: calc(100% - 0.75rem);
background-repeat: no-repeat;
}
2019-01-16 21:38:43 +01:00
@screen md {
2019-05-03 18:26:10 +02:00
.main-header img {
height: 48px;
width: auto;
}
2019-02-19 20:25:40 +01:00
.intro {
max-width: unset;
height: unset;
margin-bottom: -3rem;
margin-right: -7rem;
}
2019-01-16 21:38:43 +01:00
.main {
@apply flex-1;
@apply self-center;
@apply items-center;
@apply m-auto;
@apply py-8;
2019-02-22 21:00:39 +01:00
min-height: 36rem;
2019-05-03 18:26:10 +02:00
max-height: 42rem;
2019-01-16 21:38:43 +01:00
width: calc(100% - 3rem);
}
2019-01-11 10:15:03 +01:00
}
2019-01-16 21:38:43 +01:00
@tailwind utilities;
2019-01-17 01:18:23 +01:00
2019-02-11 22:48:06 +01:00
@responsive {
.shadow-light {
box-shadow: 0 0 8px 0 rgba(12, 12, 13, 0.1);
}
.shadow-big {
2019-05-03 18:26:10 +02:00
box-shadow: 0 12px 18px 2px rgba(34, 0, 51, 0.04),
0 6px 22px 4px rgba(7, 48, 114, 0.12),
0 6px 10px -4px rgba(14, 13, 26, 0.12);
2019-02-11 22:48:06 +01:00
}
}
2019-02-13 20:14:53 +01:00
2019-02-21 00:58:44 +01:00
@variants focus {
.outline {
outline: 1px dotted grey;
}
}
2019-02-13 20:14:53 +01:00
.word-break-all {
word-break: break-all;
line-break: anywhere;
2019-02-13 20:14:53 +01:00
}
.signin {
backface-visibility: hidden;
border-radius: 6px;
transition-property: transform, background-color;
transition-duration: 250ms;
transition-timing-function: cubic-bezier(0.07, 0.95, 0, 1);
}
.signin:hover,
.signin:focus {
@apply shadow-btn;
transform: scale(1.0625);
}
.signin:hover:active {
transform: scale(0.9375);
}
/* begin signin button color experiment */
.white-blue {
@apply border-blue-dark;
@apply border-2;
@apply text-blue-dark;
}
.white-blue:hover,
.white-blue:focus {
@apply bg-blue-dark;
@apply text-white;
}
.blue {
@apply bg-blue-dark;
@apply text-white;
}
.white-violet {
@apply border-violet;
@apply border-2;
@apply text-violet;
}
.white-violet:hover,
.white-violet:focus {
@apply bg-violet;
@apply text-white;
background-image: var(--violet-gradient);
}
.violet {
@apply bg-violet;
@apply text-white;
}
.violet:hover,
.violet:focus {
background-image: var(--violet-gradient);
}
/* end signin button color experiment */