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

1098 lines
17 KiB
CSS
Raw Normal View History

2017-06-01 19:54:17 +02:00
/*** index.html ***/
2017-06-06 23:23:10 +02:00
html {
background: url('./send_bg.svg');
2017-08-05 09:29:00 +02:00
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'segoe ui',
2017-08-04 19:19:03 +02:00
'helvetica neue', helvetica, ubuntu, roboto, noto, arial, sans-serif;
2017-07-13 16:05:45 +02:00
font-weight: 200;
2017-07-25 08:12:26 +02:00
background-size: 110%;
2017-07-13 16:05:45 +02:00
background-repeat: no-repeat;
background-position: center top;
2017-06-06 23:23:10 +02:00
height: 100%;
2017-07-25 08:12:26 +02:00
margin: auto;
2017-07-13 16:05:45 +02:00
}
body {
2017-08-04 19:19:03 +02:00
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'segoe ui',
'helvetica neue', helvetica, ubuntu, roboto, noto, arial, sans-serif;
display: flex;
flex-direction: column;
2017-07-18 20:12:42 +02:00
margin: 0;
min-height: 100vh;
position: relative;
}
2017-08-13 20:02:27 +02:00
#progress circle {
stroke: #eee;
stroke-width: 0.75em;
}
#progress #bar {
transition: stroke-dashoffset 300ms linear;
stroke: #3b9dff;
}
.header {
align-items: flex-start;
box-sizing: border-box;
display: flex;
justify-content: space-between;
padding: 31px;
width: 100%;
2017-07-18 20:12:42 +02:00
}
.send-logo {
display: flex;
2017-07-18 20:12:42 +02:00
position: relative;
align-items: center;
}
.send-logo h1 {
transition: color 50ms;
}
.send-logo h1:hover {
color: #0297f8;
}
2017-07-25 08:12:26 +02:00
.send-logo > a {
display: flex;
flex-direction: row;
}
.site-title {
color: #3e3d40;
font-size: 32px;
font-weight: 500;
margin: 0;
position: relative;
top: -1px;
2017-07-25 08:12:26 +02:00
letter-spacing: 1px;
margin-left: 8px;
}
.site-subtitle {
color: #3e3d40;
font-size: 12px;
margin: 0 8px;
}
.site-subtitle a {
font-weight: bold;
color: #3e3d40;
transition: color 50ms;
}
.site-subtitle a:hover {
color: #0297f8;
}
.feedback {
background-color: #0297f8;
background-image: url('./feedback.svg');
background-position: 2px 4px;
background-repeat: no-repeat;
background-size: 18px;
border-radius: 3px;
border: 1px solid #0297f8;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
color: #fff;
cursor: pointer;
display: block;
float: right;
font-size: 12px;
line-height: 12px;
opacity: 0.9;
2017-07-25 08:52:21 +02:00
padding: 5px;
2017-07-25 08:12:26 +02:00
overflow: hidden;
2017-07-26 20:18:14 +02:00
min-width: 12px;
max-width: 12px;
text-indent: 17px;
2017-07-26 20:18:14 +02:00
transition: all 250ms ease-in-out;
white-space: nowrap;
}
.feedback:hover,
.feedback:focus {
2017-07-26 20:18:14 +02:00
min-width: 30px;
max-width: 300px;
text-indent: 2px;
2017-07-25 08:12:26 +02:00
padding: 5px 5px 5px 20px;
background-color: #0287e8;
}
.feedback:active {
background-color: #0277d8;
2017-07-14 23:44:56 +02:00
}
2017-07-18 16:50:53 +02:00
.all {
flex: 1;
display: flex;
flex-direction: column;
justify-content: flex-start;
max-width: 650px;
margin: 0 auto;
2017-07-25 09:45:58 +02:00
padding: 0 20px;
box-sizing: border-box;
width: 96%;
2017-06-06 23:23:10 +02:00
}
2017-06-09 19:49:53 +02:00
pre,
input,
select,
textarea,
button {
2017-06-09 19:44:12 +02:00
font-family: inherit;
margin: 0;
2017-06-01 19:54:17 +02:00
}
2017-06-05 16:42:26 +02:00
pre {
font-weight: 600;
display: inline-block;
}
2017-07-18 16:50:53 +02:00
a {
text-decoration: none;
}
.btn {
font-weight: 500;
}
2017-07-13 16:05:45 +02:00
/** page-one **/
2017-07-25 08:12:26 +02:00
.fadeOut {
opacity: 0;
animation: fadeout 200ms linear;
}
@keyframes fadeout {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
.fadeIn {
opacity: 1;
animation: fadein 200ms linear;
}
@keyframes fadein {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
2017-06-05 16:42:26 +02:00
.title {
2017-07-13 16:05:45 +02:00
font-size: 33px;
line-height: 40px;
2017-07-13 16:05:45 +02:00
margin: 20px auto;
text-align: center;
max-width: 520px;
2017-08-23 10:49:49 +02:00
font-family: 'SF Pro Text', sans-serif;
2017-07-27 22:29:30 +02:00
word-wrap: break-word;
2017-07-13 16:05:45 +02:00
}
.description {
font-size: 15px;
line-height: 23px;
max-width: 630px;
2017-06-06 23:23:10 +02:00
text-align: center;
2017-07-13 17:39:46 +02:00
margin: 0 auto 60px;
color: #0c0c0d;
width: 92%;
2017-06-01 19:54:17 +02:00
}
2017-06-05 16:42:26 +02:00
.upload-window {
2017-10-10 19:20:49 +02:00
border: 3px dashed rgba(0, 148, 251, 0.5);
margin: 0 auto 10px;
2017-07-14 23:44:56 +02:00
height: 255px;
2017-07-13 16:05:45 +02:00
border-radius: 4px;
2017-06-01 19:54:17 +02:00
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
2017-06-20 21:23:12 +02:00
text-align: center;
transition: transform 150ms;
padding: 15px;
2017-06-01 19:54:17 +02:00
}
2017-06-05 16:42:26 +02:00
2017-07-13 16:05:45 +02:00
.upload-window.ondrag {
2017-10-10 19:20:49 +02:00
border: 5px dashed rgba(0, 148, 251, 0.5);
2017-07-13 16:05:45 +02:00
margin: 0 auto;
2017-07-19 18:54:44 +02:00
height: 251px;
transform: scale(1.04);
2017-07-13 16:05:45 +02:00
border-radius: 4.2px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
2017-06-01 19:54:17 +02:00
}
2017-06-05 16:42:26 +02:00
2017-07-13 16:05:45 +02:00
.link {
color: #0094fb;
2017-07-13 16:05:45 +02:00
text-decoration: none;
2017-06-01 19:54:17 +02:00
}
2017-06-05 16:42:26 +02:00
2017-07-25 08:12:26 +02:00
.link:hover {
color: #0287e8;
}
2017-07-13 16:05:45 +02:00
#upload-text {
font-size: 22px;
color: #737373;
2017-07-19 21:48:39 +02:00
margin: 20px 0 10px;
2017-08-23 10:49:49 +02:00
font-family: 'SF Pro Text', sans-serif;
2017-06-01 19:54:17 +02:00
}
2017-06-05 16:42:26 +02:00
2017-09-12 02:09:29 +02:00
.browse {
background: #0297f8;
2017-07-13 16:05:45 +02:00
border-radius: 5px;
2017-10-10 19:20:49 +02:00
font-size: 20px;
color: #fff;
2017-08-11 13:41:14 +02:00
min-width: 240px;
2017-10-10 19:20:49 +02:00
height: 60px;
2017-07-13 16:05:45 +02:00
display: flex;
justify-content: center;
align-items: center;
2017-06-01 19:54:17 +02:00
cursor: pointer;
2017-08-11 13:41:14 +02:00
padding: 0 10px;
2017-06-01 19:54:17 +02:00
}
2017-06-05 16:42:26 +02:00
2017-09-12 02:09:29 +02:00
.browse:hover {
2017-07-24 21:43:19 +02:00
background-color: #0287e8;
}
2017-09-13 21:01:55 +02:00
input[type='file'] {
opacity: 0;
overflow: hidden;
position: absolute;
z-index: -1;
}
input[type='file'].has-focus + #browse,
input[type='file']:focus + #browse {
background-color: #0287e8;
outline: 1px dotted #000;
outline: -webkit-focus-ring-color auto 5px;
2017-06-01 19:54:17 +02:00
}
2017-06-05 16:42:26 +02:00
2017-07-19 21:48:39 +02:00
#file-size-msg {
font-size: 12px;
line-height: 16px;
2017-07-19 21:48:39 +02:00
color: #737373;
margin-bottom: 22px;
}
2017-06-01 19:54:17 +02:00
/** file-list **/
2017-06-05 16:42:26 +02:00
th {
2017-07-13 16:05:45 +02:00
font-size: 16px;
color: #858585;
font-weight: lighter;
2017-06-01 19:54:17 +02:00
text-align: left;
2017-07-14 23:44:56 +02:00
background: rgba(0, 148, 251, 0.05);
2017-07-13 16:05:45 +02:00
height: 40px;
2017-07-14 23:44:56 +02:00
border-top: 1px solid rgba(0, 148, 251, 0.1);
2017-07-13 16:05:45 +02:00
padding: 0 19px;
2017-07-27 22:01:33 +02:00
white-space: nowrap;
2017-06-01 19:54:17 +02:00
}
2017-06-05 16:42:26 +02:00
td {
2017-07-13 16:05:45 +02:00
font-size: 15px;
2017-06-01 19:54:17 +02:00
vertical-align: top;
color: #4a4a4a;
2017-07-13 17:39:46 +02:00
padding: 17px 19px 0;
2017-07-13 16:05:45 +02:00
line-height: 23px;
2017-07-24 22:58:18 +02:00
position: relative;
2017-06-01 19:54:17 +02:00
}
2017-06-05 16:42:26 +02:00
2017-07-05 19:11:00 +02:00
table {
2017-07-13 16:05:45 +02:00
border-collapse: collapse;
2017-07-14 23:44:56 +02:00
font-family: 'Segoe UI', 'SF Pro Text', sans-serif;
2017-07-05 19:11:00 +02:00
}
tbody {
word-wrap: break-word;
2017-07-24 21:43:19 +02:00
word-break: break-all;
2017-07-05 19:11:00 +02:00
}
2017-06-05 16:42:26 +02:00
#uploaded-files {
2017-07-13 16:05:45 +02:00
margin: 45.3px auto;
2017-06-01 19:54:17 +02:00
table-layout: fixed;
}
2017-06-05 16:42:26 +02:00
#uploaded-file {
width: 35%;
}
#copy-file-list {
width: 25%;
}
#expiry-file-list {
width: 21%;
}
#delete-file-list {
width: 12%;
}
.overflow-col {
text-overflow: ellipsis;
max-width: 0;
overflow: hidden;
white-space: nowrap;
}
2017-09-06 23:09:17 +02:00
.center-col {
text-align: center;
}
.icon-delete,
.icon-copy,
.icon-check {
2017-07-19 16:21:56 +02:00
cursor: pointer;
}
2017-09-13 21:01:55 +02:00
.icon-copy[disabled='disabled'] {
2017-08-03 16:11:23 +02:00
pointer-events: none;
opacity: 0.3;
}
2017-08-14 21:04:03 +02:00
.text-copied {
color: #0a8dff;
}
/* Popup container */
.popup {
2017-07-24 22:58:18 +02:00
position: absolute;
2017-06-09 19:44:12 +02:00
display: inline-block;
}
/* The actual popup (appears on top) */
.popup .popuptext {
2017-06-09 19:44:12 +02:00
visibility: hidden;
2017-07-27 09:16:26 +02:00
min-width: 204px;
min-height: 105px;
2017-07-24 21:43:19 +02:00
background-color: #fff;
color: #000;
2017-07-27 09:16:26 +02:00
border: 1px solid #d7d7db;
padding: 15px 24px;
box-sizing: content-box;
2017-06-09 19:44:12 +02:00
text-align: center;
2017-07-24 21:43:19 +02:00
border-radius: 5px;
2017-06-09 19:44:12 +02:00
position: absolute;
z-index: 1;
2017-07-27 09:16:26 +02:00
bottom: 20px;
left: -40px;
2017-06-09 19:44:12 +02:00
transition: opacity 0.5s;
opacity: 0;
2017-07-13 16:05:45 +02:00
outline: 0;
2017-07-27 09:16:26 +02:00
box-shadow: 3px 3px 7px rgba(136, 136, 136, 0.3);
}
/* Popup arrow */
.popup .popuptext::after {
2017-09-13 21:01:55 +02:00
content: '';
2017-06-09 19:44:12 +02:00
position: absolute;
2017-07-27 09:16:26 +02:00
bottom: -11px;
left: 20px;
background-color: #fff;
display: block;
width: 20px;
height: 20px;
transform: rotate(45deg);
border-radius: 0 0 5px;
border-right: 1px solid #d7d7db;
border-bottom: 1px solid #d7d7db;
}
.popup .show {
2017-06-09 19:44:12 +02:00
visibility: visible;
opacity: 1;
}
2017-07-24 21:43:19 +02:00
.popup-message {
2017-07-27 09:16:26 +02:00
height: 40px;
display: flex;
justify-content: center;
align-items: center;
border-bottom: 1px #ebebeb solid;
color: #0c0c0d;
font-size: 15px;
font-weight: normal;
padding-bottom: 15px;
white-space: nowrap;
width: calc(100% + 48px);
margin-left: -24px;
}
.popup-action {
margin-top: 15px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
2017-07-24 21:43:19 +02:00
}
.popup-yes {
color: #fff;
background-color: #0297f8;
border-radius: 5px;
2017-07-27 09:16:26 +02:00
padding: 5px 25px;
font-weight: normal;
2017-07-24 21:43:19 +02:00
cursor: pointer;
2017-07-27 09:16:26 +02:00
min-width: 94px;
box-sizing: border-box;
white-space: nowrap;
margin-left: 12px;
2017-07-24 21:43:19 +02:00
}
.popup-yes:hover {
background-color: #0287e8;
}
.popup-no {
color: #4a4a4a;
2017-07-27 09:16:26 +02:00
background-color: #fbfbfb;
border: 1px #c1c1c1 solid;
border-radius: 5px;
padding: 5px 25px;
font-weight: normal;
min-width: 94px;
box-sizing: border-box;
2017-07-24 21:43:19 +02:00
cursor: pointer;
2017-07-27 09:16:26 +02:00
white-space: nowrap;
}
.popup-no:hover {
background-color: #efeff1;
2017-07-24 21:43:19 +02:00
}
2017-06-06 23:23:10 +02:00
/** upload-progress **/
2017-07-13 16:05:45 +02:00
.progress-bar {
margin-top: 3px;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
position: relative;
2017-06-20 21:23:12 +02:00
}
2017-06-06 23:23:10 +02:00
2017-07-13 16:05:45 +02:00
.percentage {
2017-07-14 23:44:56 +02:00
letter-spacing: -0.78px;
font-family: 'Segoe UI', 'SF Pro Text', sans-serif;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
2017-07-13 16:05:45 +02:00
}
.percent-number {
font-size: 43.2px;
line-height: 58px;
}
.percent-sign {
font-size: 28.8px;
stroke: none;
fill: #686868;
2017-07-13 16:05:45 +02:00
}
.upload {
2017-06-06 23:23:10 +02:00
margin: 0 auto;
display: flex;
justify-content: center;
align-items: center;
2017-07-13 16:05:45 +02:00
flex-direction: column;
text-align: center;
2017-07-14 23:44:56 +02:00
font-size: 15px;
2017-07-13 16:05:45 +02:00
}
.progress-text {
2017-07-13 17:39:46 +02:00
color: rgba(0, 0, 0, 0.5);
2017-07-13 16:05:45 +02:00
letter-spacing: -0.4px;
margin-top: 24px;
margin-bottom: 74px;
}
#cancel-upload {
color: #d70022;
background: #fff;
font-size: 15px;
border: 0;
2017-07-13 16:05:45 +02:00
cursor: pointer;
text-decoration: underline;
2017-06-06 23:23:10 +02:00
}
#cancel-upload:disabled {
text-decoration: none;
cursor: auto;
}
2017-07-13 16:05:45 +02:00
/** share-link **/
#share-window {
2017-06-06 23:23:10 +02:00
margin: 0 auto;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
2017-08-23 10:49:49 +02:00
width: 100%;
max-width: 640px;
2017-06-06 23:23:10 +02:00
}
2017-06-09 19:44:12 +02:00
#share-window-r > div {
2017-06-06 23:23:10 +02:00
font-size: 12px;
padding-bottom: 10px;
}
#copy {
display: flex;
flex-wrap: nowrap;
2017-08-23 10:49:49 +02:00
width: 100%;
2017-06-06 23:23:10 +02:00
}
#copy.wait-password #link,
#copy.wait-password #copy-btn {
opacity: 0.5;
}
2017-07-13 16:05:45 +02:00
#copy-text {
align-self: flex-start;
margin-top: 60px;
margin-bottom: 10px;
color: #0c0c0d;
2017-07-27 22:29:30 +02:00
max-width: 614px;
word-wrap: break-word;
2017-07-13 16:05:45 +02:00
}
2017-06-06 23:23:10 +02:00
#link {
flex: 1;
2017-07-13 16:05:45 +02:00
height: 56px;
border: 1px solid #0297f8;
2017-07-13 16:05:45 +02:00
border-radius: 6px 0 0 6px;
2017-08-23 10:49:49 +02:00
font-size: 20px;
2017-07-13 16:05:45 +02:00
color: #737373;
2017-08-23 10:49:49 +02:00
font-family: 'SF Pro Text', sans-serif;
2017-07-14 23:44:56 +02:00
letter-spacing: 0;
line-height: 23px;
2017-07-25 08:12:26 +02:00
font-weight: 300;
padding-left: 10px;
padding-right: 10px;
2017-07-13 16:05:45 +02:00
}
#link:disabled {
border: 1px solid #05a700;
background: #fff;
2017-06-06 23:23:10 +02:00
}
#copy-btn {
flex: 0 1 165px;
background: #0297f8;
2017-07-13 16:05:45 +02:00
border-radius: 0 6px 6px 0;
border: 1px solid #0297f8;
2017-06-06 23:23:10 +02:00
color: white;
cursor: pointer;
2017-07-13 16:05:45 +02:00
font-size: 15px;
padding-left: 10px;
padding-right: 10px;
white-space: nowrap;
2017-06-06 23:23:10 +02:00
}
#copy-btn:not(:disabled):hover {
2017-07-25 08:12:26 +02:00
background-color: #0287e8;
}
#copy-btn.success {
background: #05a700;
border: 1px solid #05a700;
}
#copy-btn:disabled {
2017-06-06 23:23:10 +02:00
cursor: auto;
}
2017-07-13 16:05:45 +02:00
#delete-file {
width: 176px;
height: 44px;
background: #fff;
2017-07-13 17:39:46 +02:00
border: 1px solid rgba(12, 12, 13, 0.3);
2017-07-13 16:05:45 +02:00
border-radius: 5px;
font-size: 15px;
margin-top: 50px;
margin-bottom: 12px;
cursor: pointer;
color: #313131;
}
2017-07-25 08:12:26 +02:00
#delete-file:hover {
background: #efeff1;
}
2017-06-06 23:23:10 +02:00
.send-new {
2017-07-13 16:05:45 +02:00
font-size: 15px;
2017-06-06 23:23:10 +02:00
margin: auto;
text-align: center;
color: #0094fb;
2017-06-06 23:23:10 +02:00
cursor: pointer;
2017-07-13 16:05:45 +02:00
text-decoration: underline;
}
2017-07-25 08:12:26 +02:00
.send-new:hover,
.send-new:focus,
.send-new:active {
color: #0287e8;
}
.hidden {
visibility: hidden;
}
.selectPassword {
padding: 10px 0;
align-self: left;
2017-10-24 17:19:08 +02:00
max-width: 100%;
2017-10-25 16:50:37 +02:00
overflow-wrap: break-word;
}
.setPassword {
align-self: left;
display: flex;
flex-wrap: nowrap;
width: 80%;
padding: 10px 5px;
}
2017-07-13 17:39:46 +02:00
/* upload-error */
2017-07-13 16:05:45 +02:00
#upload-error {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
}
#upload-error[hidden],
#unsupported-browser[hidden] {
2017-07-19 21:48:39 +02:00
display: none;
}
2017-07-13 16:05:45 +02:00
#upload-error-img {
margin: 51px 0 71px;
2017-07-13 16:05:45 +02:00
}
2017-07-13 17:39:46 +02:00
/* unsupported-browser */
2017-07-13 16:05:45 +02:00
#unsupported-browser {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.unsupported-description {
font-size: 13px;
line-height: 23px;
text-align: center;
color: #7d7d7d;
2017-07-13 17:39:46 +02:00
margin: 0 auto 23px;
2017-07-13 16:05:45 +02:00
}
.firefox-logo {
2017-07-13 16:05:45 +02:00
width: 70px;
}
.firefox-logo-small {
width: 24px;
}
#dl-firefox,
#update-firefox {
2017-07-13 16:05:45 +02:00
margin-bottom: 181px;
height: 80px;
background: #98e02b;
2017-07-13 16:05:45 +02:00
border-radius: 3px;
cursor: pointer;
2017-07-14 23:44:56 +02:00
border: 0;
2017-07-13 17:39:46 +02:00
box-shadow: 0 5px 3px rgb(234, 234, 234);
2017-07-13 16:05:45 +02:00
font-family: 'Fira Sans';
font-weight: 500;
color: #fff;
2017-07-13 16:05:45 +02:00
font-size: 26px;
display: flex;
justify-content: center;
align-items: center;
line-height: 1;
padding: 0 25px;
2017-07-13 16:05:45 +02:00
}
.unsupported-button-text {
2017-07-13 16:05:45 +02:00
text-align: left;
margin-left: 20.4px;
}
.unsupported-button-text > span {
2017-07-13 16:05:45 +02:00
font-family: 'Fira Sans';
font-weight: 300;
font-size: 18px;
letter-spacing: -0.69px;
2017-06-06 23:23:10 +02:00
}
/** download.html **/
#download-btn {
2017-07-13 16:05:45 +02:00
font-size: 15px;
2017-06-06 23:23:10 +02:00
color: white;
2017-07-13 16:05:45 +02:00
width: 180px;
height: 44px;
margin-top: 20px;
margin-bottom: 30px;
2017-06-06 23:23:10 +02:00
text-align: center;
background: #0297f8;
border: 1px solid #0297f8;
2017-07-13 16:05:45 +02:00
border-radius: 5px;
2017-06-06 23:23:10 +02:00
cursor: pointer;
}
2017-07-25 09:49:26 +02:00
#download-btn:hover {
background-color: #0287e8;
}
2017-06-06 23:23:10 +02:00
#download-btn:disabled {
background: #47b04b;
2017-06-06 23:23:10 +02:00
cursor: auto;
}
2017-07-13 16:05:45 +02:00
#download {
margin: 0 auto 30px;
2017-06-20 21:23:12 +02:00
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
2017-06-06 23:23:10 +02:00
text-align: center;
}
#expired-img {
2017-07-13 17:39:46 +02:00
margin: 51px 0 71px;
2017-07-13 16:05:45 +02:00
}
.expired-description {
font-size: 15px;
line-height: 23px;
text-align: center;
color: #7d7d7d;
2017-07-13 17:39:46 +02:00
margin: 0 auto 23px;
2017-06-06 23:23:10 +02:00
}
2017-06-20 21:23:12 +02:00
#download-progress {
2017-07-27 22:29:30 +02:00
width: 590px;
2017-06-20 21:23:12 +02:00
}
2017-07-19 21:48:39 +02:00
#download-progress[hidden] {
display: none;
}
2017-07-13 16:05:45 +02:00
#download-img {
width: 283px;
height: 196px;
2017-06-20 21:23:12 +02:00
}
2017-07-18 16:50:53 +02:00
.enterPassword {
text-align: left;
padding: 40px;
}
.red {
color: red;
}
#unlock {
display: flex;
flex-wrap: nowrap;
width: 100%;
padding: 10px 0;
}
.unlock-input {
flex: 1;
height: 46px;
border: 1px solid #0297f8;
border-radius: 6px 0 0 6px;
font-size: 20px;
color: #737373;
font-family: 'SF Pro Text', sans-serif;
letter-spacing: 0;
line-height: 23px;
font-weight: 300;
padding-left: 10px;
padding-right: 10px;
}
#unlock-btn {
flex: 0 1 165px;
background: #0297f8;
border-radius: 0 6px 6px 0;
border: 1px solid #0297f8;
color: white;
cursor: pointer;
font-size: 15px;
padding-left: 10px;
padding-right: 10px;
white-space: nowrap;
}
#unlock-btn:hover {
background-color: #0287e8;
}
.btn-hidden {
visibility: hidden;
}
.input-no-btn {
border-radius: 6px;
}
2017-07-18 16:50:53 +02:00
/* footer */
.footer {
right: 0;
bottom: 0;
left: 0;
2017-07-26 16:22:16 +02:00
font-size: 13px;
2017-07-18 16:50:53 +02:00
display: flex;
align-items: flex-end;
2017-07-25 08:12:26 +02:00
flex-direction: row;
justify-content: space-between;
2017-07-25 08:52:21 +02:00
padding: 50px 31px 41px;
2017-07-25 08:12:26 +02:00
width: 100%;
box-sizing: border-box;
2017-07-18 16:50:53 +02:00
}
.mozilla-logo {
width: 112px;
height: 32px;
margin-bottom: -5px;
}
2017-07-25 08:12:26 +02:00
.legal-links {
2017-08-23 10:49:49 +02:00
max-width: 81vw;
2017-07-25 08:12:26 +02:00
display: flex;
align-items: center;
flex-direction: row;
}
2017-07-18 16:50:53 +02:00
.legal-links > a {
color: #858585;
2017-07-25 08:12:26 +02:00
opacity: 0.9;
2017-07-26 16:22:16 +02:00
white-space: nowrap;
margin-right: 2vw;
2017-07-18 16:50:53 +02:00
}
2017-07-25 08:12:26 +02:00
.legal-links > a:hover {
opacity: 1;
}
2017-07-18 16:50:53 +02:00
.legal-links > a:visited {
color: #858585;
}
.social-links {
display: flex;
2017-07-25 08:12:26 +02:00
justify-content: space-between;
2017-07-27 09:16:26 +02:00
width: 94px;
2017-07-18 16:50:53 +02:00
}
2017-07-25 08:52:21 +02:00
.social-links > a {
opacity: 0.9;
2017-07-25 08:12:26 +02:00
}
.social-links > a:hover {
opacity: 1;
2017-07-18 16:50:53 +02:00
}
.github,
.twitter {
2017-07-18 16:50:53 +02:00
width: 32px;
height: 32px;
margin-bottom: -5px;
}
2017-10-23 16:36:07 +02:00
#addPasswordWrapper {
2017-10-24 17:19:08 +02:00
min-height: 24px;
2017-10-23 16:36:07 +02:00
}
#addPassword {
position: absolute;
visibility: collapse;
}
#addPasswordWrapper label {
line-height: 20px;
cursor: pointer;
position: relative;
opacity: 0.6;
}
#addPassword:checked + label {
opacity: 1;
}
2017-10-24 17:19:08 +02:00
#addPasswordWrapper label::before {
2017-10-23 16:36:07 +02:00
content: '';
height: 20px;
width: 20px;
margin-right: 10px;
margin-left: 5px;
float: left;
border: 1px solid rgba(12, 12, 13, 0.3);
border-radius: 2px;
}
2017-10-24 17:19:08 +02:00
#addPassword:checked + label::before {
background-image: url('./check-16-blue.svg');
2017-10-24 17:19:08 +02:00
background-position: 2px 1px;
2017-10-23 16:36:07 +02:00
}
.banner {
padding: 0 15px;
height: 48px;
background-color: #efeff1;
color: #4a4a4f;
font-size: 13px;
display: flex;
flex-direction: row;
align-content: center;
align-items: center;
justify-content: center;
}
.banner > div {
display: flex;
align-items: center;
margin: 0 auto;
}
.banner > div > span {
margin-left: 10px;
}
2017-07-27 17:00:32 +02:00
@media (max-device-width: 992px), (max-width: 992px) {
.popup .popuptext {
left: auto;
right: -40px;
}
.popup .popuptext::after {
left: auto;
right: 36px;
}
}
2017-07-25 17:55:16 +02:00
@media (max-device-width: 768px), (max-width: 768px) {
.description {
margin: 0 auto 25px;
}
#copy {
width: 100%;
}
#link {
font-size: 18px;
}
2017-07-25 08:12:26 +02:00
.footer {
flex-direction: column;
2017-07-25 09:45:58 +02:00
justify-content: flex-start;
align-items: flex-start;
max-width: 630px;
margin: auto;
2017-07-25 08:12:26 +02:00
}
.mozilla-logo {
margin-left: -7px;
}
2017-07-25 08:12:26 +02:00
.legal-links {
flex-direction: column;
margin: auto;
2017-07-25 09:45:58 +02:00
width: 100%;
max-width: 100%;
2017-07-25 08:12:26 +02:00
}
.legal-links > * {
display: block;
padding: 10px 0;
align-self: flex-start;
}
2017-07-25 08:12:26 +02:00
.social-links {
margin-top: 20px;
align-self: flex-start;
2017-07-25 08:12:26 +02:00
}
}
2017-07-25 17:55:16 +02:00
@media (max-device-width: 520px), (max-width: 520px) {
.header {
flex-direction: column;
justify-content: flex-start;
}
.feedback {
margin-top: 10px;
2017-07-27 09:16:26 +02:00
min-width: 30px;
max-width: 300px;
text-indent: 2px;
padding: 5px 5px 5px 20px;
}
2017-10-24 17:19:08 +02:00
#copy,
.setPassword,
#unlock {
width: 100%;
flex-direction: column;
2017-10-24 17:19:08 +02:00
padding-left: 0;
}
2017-10-24 17:19:08 +02:00
.selectPassword {
align-self: center;
min-width: 95%;
}
#addPasswordWrapper label::before {
margin-left: 0;
}
#link,
#unlock-input {
font-size: 22px;
padding: 15px 10px;
border-radius: 6px 6px 0 0;
}
2017-10-24 17:19:08 +02:00
#copy-btn,
#unlock-btn {
border-radius: 0 0 6px 6px;
flex: 0 1 65px;
}
2017-10-24 17:19:08 +02:00
#copy-text {
text-align: center;
}
th {
font-size: 14px;
padding: 0 5px;
}
td {
font-size: 13px;
padding: 17px 5px 0;
}
}