2017-06-01 17:54:17 +00:00
|
|
|
/*** index.html ***/
|
2017-06-06 21:23:10 +00:00
|
|
|
html {
|
2017-07-14 21:44:56 +00:00
|
|
|
background: url('resources/send_bg.svg');
|
2017-07-20 21:52:21 +00:00
|
|
|
font-family: -apple-system,
|
|
|
|
BlinkMacSystemFont,
|
|
|
|
'SF Pro Text',
|
|
|
|
Helvetica,
|
|
|
|
Arial,
|
|
|
|
sans-serif;
|
2017-07-13 14:05:45 +00:00
|
|
|
font-weight: 200;
|
2017-07-25 06:12:26 +00:00
|
|
|
background-size: 110%;
|
2017-07-13 14:05:45 +00:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center top;
|
2017-06-06 21:23:10 +00:00
|
|
|
height: 100%;
|
2017-07-25 06:12:26 +00:00
|
|
|
max-width: 1440px;
|
|
|
|
margin: auto;
|
2017-07-13 14:05:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2017-07-20 21:52:21 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2017-07-18 18:12:42 +00:00
|
|
|
margin: 0;
|
2017-07-20 21:52:21 +00:00
|
|
|
min-height: 100vh;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header {
|
|
|
|
align-items: flex-start;
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
padding: 31px;
|
|
|
|
width: 100%;
|
2017-07-18 18:12:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.send-logo {
|
2017-07-20 21:52:21 +00:00
|
|
|
display: flex;
|
2017-07-18 18:12:42 +00:00
|
|
|
position: relative;
|
2017-07-20 21:52:21 +00:00
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2017-07-25 06:12:26 +00:00
|
|
|
.send-logo > a {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
2017-07-20 21:52:21 +00:00
|
|
|
.site-title {
|
2017-07-24 15:59:51 +00:00
|
|
|
color: #3e3d40;
|
|
|
|
font-size: 32px;
|
2017-07-20 21:52:21 +00:00
|
|
|
font-weight: 500;
|
|
|
|
margin: 0;
|
|
|
|
position: relative;
|
|
|
|
top: -1px;
|
2017-07-25 06:12:26 +00:00
|
|
|
letter-spacing: 1px;
|
|
|
|
margin-left: 8px;
|
2017-07-20 21:52:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.site-subtitle {
|
2017-07-24 15:59:51 +00:00
|
|
|
color: #3e3d40;
|
2017-07-20 21:52:21 +00:00
|
|
|
font-size: 12px;
|
|
|
|
margin: 0 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.site-subtitle a {
|
|
|
|
font-weight: bold;
|
2017-07-24 15:59:51 +00:00
|
|
|
color: #3e3d40;
|
2017-07-20 21:52:21 +00:00
|
|
|
transition: color 50ms;
|
|
|
|
}
|
|
|
|
|
|
|
|
.send-logo:hover a {
|
|
|
|
color: #0297f8;
|
|
|
|
}
|
|
|
|
|
|
|
|
.feedback {
|
|
|
|
background-color: #0297f8;
|
|
|
|
background-image: url('resources/feedback.svg');
|
2017-07-25 07:34:01 +00:00
|
|
|
background-position: 2px 4px;
|
2017-07-20 21:52:21 +00:00
|
|
|
background-repeat: no-repeat;
|
2017-07-25 07:34:01 +00:00
|
|
|
background-size: 18px;
|
2017-07-20 21:52:21 +00:00
|
|
|
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 06:52:21 +00:00
|
|
|
padding: 5px;
|
2017-07-25 06:12:26 +00:00
|
|
|
overflow: hidden;
|
|
|
|
width: 12px;
|
2017-07-25 07:34:01 +00:00
|
|
|
text-indent: 17px;
|
2017-07-25 06:12:26 +00:00
|
|
|
transition: all 150ms ease-in-out;
|
2017-07-20 21:52:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.feedback:hover,
|
|
|
|
.feedback:focus {
|
2017-07-25 06:12:26 +00:00
|
|
|
width: 57px;
|
2017-07-25 07:34:01 +00:00
|
|
|
text-indent: 2px;
|
2017-07-25 06:12:26 +00:00
|
|
|
padding: 5px 5px 5px 20px;
|
2017-07-20 21:52:21 +00:00
|
|
|
background-color: #0287e8;
|
2017-07-25 06:12:26 +00:00
|
|
|
transition: all 150ms ease-in-out;
|
2017-07-20 21:52:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.feedback:active {
|
|
|
|
background-color: #0277d8;
|
2017-07-14 21:44:56 +00:00
|
|
|
}
|
|
|
|
|
2017-07-18 14:50:53 +00:00
|
|
|
.all {
|
2017-07-20 21:52:21 +00:00
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
|
|
|
max-width: 630px;
|
|
|
|
margin: 0 auto;
|
2017-07-25 07:45:58 +00:00
|
|
|
padding: 0 20px;
|
|
|
|
box-sizing: border-box;
|
2017-07-20 21:52:21 +00:00
|
|
|
width: 96%;
|
2017-06-06 21:23:10 +00:00
|
|
|
}
|
2017-06-09 17:49:53 +00:00
|
|
|
|
2017-07-20 21:52:21 +00:00
|
|
|
input,
|
|
|
|
select,
|
|
|
|
textarea,
|
|
|
|
button {
|
2017-06-09 17:44:12 +00:00
|
|
|
font-family: inherit;
|
2017-06-01 17:54:17 +00:00
|
|
|
}
|
2017-06-05 14:42:26 +00:00
|
|
|
|
2017-07-18 14:50:53 +00:00
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2017-07-13 14:05:45 +00:00
|
|
|
/** page-one **/
|
2017-07-25 06:12:26 +00:00
|
|
|
|
2017-06-05 14:42:26 +00:00
|
|
|
.title {
|
2017-07-13 14:05:45 +00:00
|
|
|
font-size: 33px;
|
2017-07-20 21:52:21 +00:00
|
|
|
line-height: 40px;
|
2017-07-13 14:05:45 +00:00
|
|
|
margin: 20px auto;
|
|
|
|
text-align: center;
|
2017-07-20 21:52:21 +00:00
|
|
|
max-width: 520px;
|
2017-07-14 21:44:56 +00:00
|
|
|
font-family: 'SF Pro Display', sans-serif;
|
2017-07-13 14:05:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.description {
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 23px;
|
2017-07-20 21:52:21 +00:00
|
|
|
max-width: 630px;
|
2017-06-06 21:23:10 +00:00
|
|
|
text-align: center;
|
2017-07-13 15:39:46 +00:00
|
|
|
margin: 0 auto 60px;
|
2017-07-20 21:52:21 +00:00
|
|
|
color: #0c0c0d;
|
|
|
|
width: 92%;
|
2017-06-01 17:54:17 +00:00
|
|
|
}
|
2017-06-05 14:42:26 +00:00
|
|
|
|
|
|
|
.upload-window {
|
2017-07-14 21:44:56 +00:00
|
|
|
border: 1px dashed rgba(0, 148, 251, 0.5);
|
2017-06-01 17:54:17 +00:00
|
|
|
margin: 0 auto;
|
2017-07-14 21:44:56 +00:00
|
|
|
height: 255px;
|
2017-07-13 14:05:45 +00:00
|
|
|
border-radius: 4px;
|
2017-06-01 17:54:17 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
2017-06-20 19:23:12 +00:00
|
|
|
text-align: center;
|
2017-07-20 21:52:21 +00:00
|
|
|
transition: transform 150ms;
|
|
|
|
padding: 15px;
|
2017-06-01 17:54:17 +00:00
|
|
|
}
|
2017-06-05 14:42:26 +00:00
|
|
|
|
2017-07-13 14:05:45 +00:00
|
|
|
.upload-window.ondrag {
|
2017-07-14 21:44:56 +00:00
|
|
|
border: 3px dashed rgba(0, 148, 251, 0.5);
|
2017-07-13 14:05:45 +00:00
|
|
|
margin: 0 auto;
|
2017-07-19 16:54:44 +00:00
|
|
|
height: 251px;
|
2017-07-20 21:52:21 +00:00
|
|
|
transform: scale(1.04);
|
2017-07-13 14:05:45 +00:00
|
|
|
border-radius: 4.2px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
|
|
|
text-align: center;
|
2017-06-01 17:54:17 +00:00
|
|
|
}
|
2017-06-05 14:42:26 +00:00
|
|
|
|
2017-07-13 14:05:45 +00:00
|
|
|
.link {
|
2017-07-20 21:52:21 +00:00
|
|
|
color: #0094fb;
|
2017-07-13 14:05:45 +00:00
|
|
|
text-decoration: none;
|
2017-06-01 17:54:17 +00:00
|
|
|
}
|
2017-06-05 14:42:26 +00:00
|
|
|
|
2017-07-25 06:12:26 +00:00
|
|
|
.link:hover {
|
|
|
|
color: #0287e8;
|
|
|
|
}
|
|
|
|
|
2017-07-13 14:05:45 +00:00
|
|
|
#upload-text {
|
|
|
|
font-size: 22px;
|
|
|
|
color: #737373;
|
2017-07-19 19:48:39 +00:00
|
|
|
margin: 20px 0 10px;
|
2017-07-14 21:44:56 +00:00
|
|
|
font-family: 'SF Pro Display', sans-serif;
|
2017-06-01 17:54:17 +00:00
|
|
|
}
|
2017-06-05 14:42:26 +00:00
|
|
|
|
2017-07-13 14:05:45 +00:00
|
|
|
#browse {
|
2017-07-20 21:52:21 +00:00
|
|
|
background: #0297f8;
|
2017-07-13 14:05:45 +00:00
|
|
|
border-radius: 5px;
|
|
|
|
font-size: 15px;
|
2017-07-20 21:52:21 +00:00
|
|
|
color: #fff;
|
2017-07-13 14:05:45 +00:00
|
|
|
width: 240px;
|
|
|
|
height: 44px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2017-06-01 17:54:17 +00:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
2017-06-05 14:42:26 +00:00
|
|
|
|
2017-07-24 19:43:19 +00:00
|
|
|
#browse:hover {
|
|
|
|
background-color: #0287e8;
|
|
|
|
}
|
|
|
|
|
2017-06-01 17:54:17 +00:00
|
|
|
input[type="file"] {
|
|
|
|
display: none;
|
|
|
|
}
|
2017-06-05 14:42:26 +00:00
|
|
|
|
2017-07-19 19:48:39 +00:00
|
|
|
#file-size-msg {
|
|
|
|
font-size: 12px;
|
2017-07-20 21:52:21 +00:00
|
|
|
line-height: 16px;
|
2017-07-19 19:48:39 +00:00
|
|
|
color: #737373;
|
|
|
|
margin-bottom: 22px;
|
|
|
|
}
|
|
|
|
|
2017-06-01 17:54:17 +00:00
|
|
|
/** file-list **/
|
2017-06-05 14:42:26 +00:00
|
|
|
th {
|
2017-07-13 14:05:45 +00:00
|
|
|
font-size: 16px;
|
|
|
|
color: #858585;
|
|
|
|
font-weight: lighter;
|
2017-06-01 17:54:17 +00:00
|
|
|
text-align: left;
|
2017-07-14 21:44:56 +00:00
|
|
|
background: rgba(0, 148, 251, 0.05);
|
2017-07-13 14:05:45 +00:00
|
|
|
height: 40px;
|
2017-07-14 21:44:56 +00:00
|
|
|
border-top: 1px solid rgba(0, 148, 251, 0.1);
|
2017-07-13 14:05:45 +00:00
|
|
|
padding: 0 19px;
|
2017-06-01 17:54:17 +00:00
|
|
|
}
|
2017-06-05 14:42:26 +00:00
|
|
|
|
|
|
|
td {
|
2017-07-13 14:05:45 +00:00
|
|
|
font-size: 15px;
|
2017-06-01 17:54:17 +00:00
|
|
|
vertical-align: top;
|
2017-07-20 21:52:21 +00:00
|
|
|
color: #4a4a4a;
|
2017-07-13 15:39:46 +00:00
|
|
|
padding: 17px 19px 0;
|
2017-07-13 14:05:45 +00:00
|
|
|
line-height: 23px;
|
2017-07-24 20:58:18 +00:00
|
|
|
position: relative;
|
2017-06-01 17:54:17 +00:00
|
|
|
}
|
2017-06-05 14:42:26 +00:00
|
|
|
|
2017-07-05 17:11:00 +00:00
|
|
|
table {
|
2017-07-13 14:05:45 +00:00
|
|
|
border-collapse: collapse;
|
2017-07-14 21:44:56 +00:00
|
|
|
font-family: 'Segoe UI', 'SF Pro Text', sans-serif;
|
2017-07-05 17:11:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tbody {
|
|
|
|
word-wrap: break-word;
|
2017-07-24 19:43:19 +00:00
|
|
|
word-break: break-all;
|
2017-07-05 17:11:00 +00:00
|
|
|
}
|
|
|
|
|
2017-06-05 14:42:26 +00:00
|
|
|
#uploaded-files {
|
2017-07-13 14:05:45 +00:00
|
|
|
margin: 45.3px auto;
|
2017-06-01 17:54:17 +00:00
|
|
|
table-layout: fixed;
|
|
|
|
}
|
2017-06-05 14:42:26 +00:00
|
|
|
|
2017-07-20 21:52:21 +00:00
|
|
|
.icon-delete,
|
|
|
|
.icon-copy,
|
|
|
|
.icon-check {
|
2017-07-19 14:21:56 +00:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2017-06-08 19:57:56 +00:00
|
|
|
/* Popup container */
|
|
|
|
.popup {
|
2017-07-24 20:58:18 +00:00
|
|
|
position: absolute;
|
2017-06-09 17:44:12 +00:00
|
|
|
display: inline-block;
|
2017-06-08 19:57:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* The actual popup (appears on top) */
|
|
|
|
.popup .popuptext {
|
2017-06-09 17:44:12 +00:00
|
|
|
visibility: hidden;
|
2017-07-24 20:58:18 +00:00
|
|
|
min-width: 115px;
|
2017-07-24 19:43:19 +00:00
|
|
|
background-color: #fff;
|
|
|
|
color: #000;
|
|
|
|
border: 1px solid #0297f8;
|
2017-06-09 17:44:12 +00:00
|
|
|
text-align: center;
|
2017-07-24 19:43:19 +00:00
|
|
|
border-radius: 5px;
|
|
|
|
padding: 7px 8px;
|
2017-06-09 17:44:12 +00:00
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
2017-07-24 20:58:18 +00:00
|
|
|
bottom: 8px;
|
|
|
|
right: -28px;
|
2017-06-09 17:44:12 +00:00
|
|
|
transition: opacity 0.5s;
|
|
|
|
opacity: 0;
|
2017-07-13 14:05:45 +00:00
|
|
|
outline: 0;
|
2017-07-24 19:43:19 +00:00
|
|
|
box-shadow: 3px 3px 7px #888;
|
2017-06-08 19:57:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Popup arrow */
|
|
|
|
.popup .popuptext::after {
|
2017-06-09 17:44:12 +00:00
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
top: 100%;
|
2017-07-24 20:58:18 +00:00
|
|
|
right: 30px;
|
2017-06-09 17:44:12 +00:00
|
|
|
margin-left: -5px;
|
|
|
|
border-width: 5px;
|
|
|
|
border-style: solid;
|
2017-07-24 19:43:19 +00:00
|
|
|
border-color: #0297f8 transparent transparent;
|
2017-06-08 19:57:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.popup .show {
|
2017-06-09 17:44:12 +00:00
|
|
|
visibility: visible;
|
|
|
|
opacity: 1;
|
2017-06-08 19:57:56 +00:00
|
|
|
}
|
|
|
|
|
2017-07-24 19:43:19 +00:00
|
|
|
.popup-message {
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popup-yes {
|
|
|
|
color: #fff;
|
|
|
|
background-color: #0297f8;
|
|
|
|
border-radius: 5px;
|
2017-07-24 20:58:18 +00:00
|
|
|
padding: 2px 11px;
|
2017-07-24 19:43:19 +00:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popup-yes:hover {
|
|
|
|
background-color: #0287e8;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popup-no {
|
|
|
|
color: #4a4a4a;
|
|
|
|
border-radius: 6px;
|
|
|
|
padding: 3px 5px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2017-06-06 21:23:10 +00:00
|
|
|
/** upload-progress **/
|
2017-07-13 14:05:45 +00:00
|
|
|
.progress-bar {
|
|
|
|
margin-top: 3px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
text-align: center;
|
2017-06-20 19:23:12 +00:00
|
|
|
}
|
2017-06-06 21:23:10 +00:00
|
|
|
|
2017-07-13 14:05:45 +00:00
|
|
|
.percentage {
|
|
|
|
position: absolute;
|
2017-07-14 21:44:56 +00:00
|
|
|
letter-spacing: -0.78px;
|
|
|
|
font-family: 'Segoe UI', 'SF Pro Text', sans-serif;
|
2017-07-13 14:05:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.percent-number {
|
|
|
|
font-size: 43.2px;
|
|
|
|
line-height: 58px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.percent-sign {
|
|
|
|
font-size: 28.8px;
|
|
|
|
color: rgb(104, 104, 104);
|
|
|
|
}
|
|
|
|
|
|
|
|
.upload {
|
2017-06-06 21:23:10 +00:00
|
|
|
margin: 0 auto;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2017-07-13 14:05:45 +00:00
|
|
|
flex-direction: column;
|
|
|
|
text-align: center;
|
2017-07-14 21:44:56 +00:00
|
|
|
font-size: 15px;
|
2017-07-13 14:05:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.progress-text {
|
2017-07-13 15:39:46 +00:00
|
|
|
color: rgba(0, 0, 0, 0.5);
|
2017-07-13 14:05:45 +00:00
|
|
|
letter-spacing: -0.4px;
|
|
|
|
margin-top: 24px;
|
|
|
|
margin-bottom: 74px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#cancel-upload {
|
2017-07-20 21:52:21 +00:00
|
|
|
color: #d70022;
|
2017-07-13 14:05:45 +00:00
|
|
|
cursor: pointer;
|
|
|
|
text-decoration: underline;
|
2017-06-06 21:23:10 +00:00
|
|
|
}
|
|
|
|
|
2017-07-13 14:05:45 +00:00
|
|
|
/** share-link **/
|
|
|
|
#share-window {
|
2017-06-06 21:23:10 +00:00
|
|
|
margin: 0 auto;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2017-06-09 17:44:12 +00:00
|
|
|
#share-window-r > div {
|
2017-06-06 21:23:10 +00:00
|
|
|
font-size: 12px;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#copy {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
2017-07-20 21:52:21 +00:00
|
|
|
width: 640px;
|
2017-06-06 21:23:10 +00:00
|
|
|
}
|
|
|
|
|
2017-07-13 14:05:45 +00:00
|
|
|
#copy-text {
|
|
|
|
align-self: flex-start;
|
|
|
|
margin-top: 60px;
|
|
|
|
margin-bottom: 10px;
|
2017-07-20 21:52:21 +00:00
|
|
|
color: #0c0c0d;
|
2017-07-13 14:05:45 +00:00
|
|
|
}
|
|
|
|
|
2017-06-06 21:23:10 +00:00
|
|
|
#link {
|
2017-07-20 21:52:21 +00:00
|
|
|
flex: 1;
|
2017-07-13 14:05:45 +00:00
|
|
|
height: 56px;
|
2017-07-20 21:52:21 +00:00
|
|
|
border: 1px solid #0297f8;
|
2017-07-13 14:05:45 +00:00
|
|
|
border-radius: 6px 0 0 6px;
|
|
|
|
font-size: 24px;
|
|
|
|
color: #737373;
|
2017-07-14 21:44:56 +00:00
|
|
|
font-family: 'SF Pro Display', sans-serif;
|
|
|
|
letter-spacing: 0;
|
|
|
|
line-height: 23px;
|
2017-07-25 06:12:26 +00:00
|
|
|
font-weight: 300;
|
|
|
|
padding-left: 10px;
|
|
|
|
padding-right: 10px;
|
2017-07-13 14:05:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#link:disabled {
|
2017-07-20 21:52:21 +00:00
|
|
|
border: 1px solid #05a700;
|
|
|
|
background: #fff;
|
2017-06-06 21:23:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#copy-btn {
|
2017-07-20 21:52:21 +00:00
|
|
|
flex: 0 1 165px;
|
|
|
|
background: #0297f8;
|
2017-07-13 14:05:45 +00:00
|
|
|
border-radius: 0 6px 6px 0;
|
2017-07-20 21:52:21 +00:00
|
|
|
border: 1px solid #0297f8;
|
2017-06-06 21:23:10 +00:00
|
|
|
color: white;
|
|
|
|
cursor: pointer;
|
2017-07-13 14:05:45 +00:00
|
|
|
font-size: 15px;
|
2017-07-20 21:52:21 +00:00
|
|
|
height: 60px;
|
|
|
|
padding-left: 10px;
|
|
|
|
padding-right: 10px;
|
|
|
|
white-space: nowrap;
|
2017-06-06 21:23:10 +00:00
|
|
|
}
|
|
|
|
|
2017-07-25 06:12:26 +00:00
|
|
|
#copy-btn:hover {
|
|
|
|
background-color: #0287e8;
|
|
|
|
}
|
|
|
|
|
2017-06-06 21:23:10 +00:00
|
|
|
#copy-btn:disabled {
|
2017-07-20 21:52:21 +00:00
|
|
|
background: #05a700;
|
|
|
|
border: 1px solid #05a700;
|
2017-06-06 21:23:10 +00:00
|
|
|
cursor: auto;
|
|
|
|
}
|
|
|
|
|
2017-07-13 14:05:45 +00:00
|
|
|
#delete-file {
|
|
|
|
width: 176px;
|
|
|
|
height: 44px;
|
2017-07-20 21:52:21 +00:00
|
|
|
background: #fff;
|
2017-07-13 15:39:46 +00:00
|
|
|
border: 1px solid rgba(12, 12, 13, 0.3);
|
2017-07-13 14:05:45 +00:00
|
|
|
border-radius: 5px;
|
|
|
|
font-size: 15px;
|
|
|
|
margin-top: 50px;
|
|
|
|
margin-bottom: 12px;
|
|
|
|
cursor: pointer;
|
|
|
|
color: #313131;
|
|
|
|
}
|
|
|
|
|
2017-07-25 06:12:26 +00:00
|
|
|
#delete-file:hover {
|
|
|
|
background: #efeff1;
|
|
|
|
}
|
|
|
|
|
2017-06-06 21:23:10 +00:00
|
|
|
.send-new {
|
2017-07-13 14:05:45 +00:00
|
|
|
font-size: 15px;
|
2017-06-06 21:23:10 +00:00
|
|
|
margin: auto;
|
|
|
|
text-align: center;
|
2017-07-20 21:52:21 +00:00
|
|
|
color: #0094fb;
|
2017-06-06 21:23:10 +00:00
|
|
|
cursor: pointer;
|
2017-07-13 14:05:45 +00:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2017-07-25 06:12:26 +00:00
|
|
|
.send-new:hover,
|
|
|
|
.send-new:focus,
|
|
|
|
.send-new:active {
|
|
|
|
color: #0287e8;
|
|
|
|
}
|
|
|
|
|
2017-07-13 15:39:46 +00:00
|
|
|
/* upload-error */
|
2017-07-13 14:05:45 +00:00
|
|
|
#upload-error {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2017-07-20 21:52:21 +00:00
|
|
|
#upload-error[hidden],
|
|
|
|
#unsupported-browser[hidden] {
|
2017-07-19 19:48:39 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2017-07-13 14:05:45 +00:00
|
|
|
#upload-error-img {
|
2017-07-25 10:20:25 +00:00
|
|
|
margin: 51px 0 71px;
|
2017-07-13 14:05:45 +00:00
|
|
|
}
|
|
|
|
|
2017-07-13 15:39:46 +00:00
|
|
|
/* unsupported-browser */
|
2017-07-13 14:05:45 +00: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;
|
2017-07-20 21:52:21 +00:00
|
|
|
color: #7d7d7d;
|
2017-07-13 15:39:46 +00:00
|
|
|
margin: 0 auto 23px;
|
2017-07-13 14:05:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#firefox-logo {
|
|
|
|
width: 70px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dl-firefox {
|
|
|
|
margin-bottom: 181px;
|
|
|
|
width: 260px;
|
|
|
|
height: 80px;
|
2017-07-20 21:52:21 +00:00
|
|
|
background: #12bc00;
|
2017-07-13 14:05:45 +00:00
|
|
|
border-radius: 3px;
|
|
|
|
cursor: pointer;
|
2017-07-14 21:44:56 +00:00
|
|
|
border: 0;
|
2017-07-13 15:39:46 +00:00
|
|
|
box-shadow: 0 5px 3px rgb(234, 234, 234);
|
2017-07-13 14:05:45 +00:00
|
|
|
font-family: 'Fira Sans';
|
|
|
|
font-weight: 500;
|
2017-07-20 21:52:21 +00:00
|
|
|
color: #fff;
|
2017-07-13 14:05:45 +00:00
|
|
|
font-size: 26px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
line-height: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dl-firefox-text {
|
|
|
|
text-align: left;
|
|
|
|
margin-left: 20.4px;
|
|
|
|
}
|
|
|
|
|
2017-07-13 15:39:46 +00:00
|
|
|
#dl-firefox-text > span {
|
2017-07-13 14:05:45 +00:00
|
|
|
font-family: 'Fira Sans';
|
|
|
|
font-weight: 300;
|
|
|
|
font-size: 18px;
|
|
|
|
letter-spacing: -0.69px;
|
2017-06-06 21:23:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/** download.html **/
|
|
|
|
#download-btn {
|
2017-07-13 14:05:45 +00:00
|
|
|
font-size: 15px;
|
2017-06-06 21:23:10 +00:00
|
|
|
color: white;
|
2017-07-13 14:05:45 +00:00
|
|
|
width: 180px;
|
|
|
|
height: 44px;
|
|
|
|
margin-top: 20px;
|
|
|
|
margin-bottom: 30px;
|
2017-06-06 21:23:10 +00:00
|
|
|
text-align: center;
|
2017-07-20 21:52:21 +00:00
|
|
|
background: #0297f8;
|
|
|
|
border: 1px solid #0297f8;
|
2017-07-13 14:05:45 +00:00
|
|
|
border-radius: 5px;
|
2017-06-06 21:23:10 +00:00
|
|
|
font-weight: 300;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2017-07-25 07:49:26 +00:00
|
|
|
#download-btn:hover {
|
|
|
|
background-color: #0287e8;
|
|
|
|
}
|
|
|
|
|
2017-06-06 21:23:10 +00:00
|
|
|
#download-btn:disabled {
|
2017-07-20 21:52:21 +00:00
|
|
|
background: #47b04b;
|
2017-06-06 21:23:10 +00:00
|
|
|
cursor: auto;
|
|
|
|
}
|
|
|
|
|
2017-07-13 14:05:45 +00:00
|
|
|
#download {
|
2017-06-20 19:23:12 +00:00
|
|
|
margin: 0 auto;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
2017-06-06 21:23:10 +00:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#expired-img {
|
2017-07-13 15:39:46 +00:00
|
|
|
margin: 51px 0 71px;
|
2017-07-13 14:05:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.expired-description {
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 23px;
|
|
|
|
text-align: center;
|
2017-07-20 21:52:21 +00:00
|
|
|
color: #7d7d7d;
|
2017-07-13 15:39:46 +00:00
|
|
|
margin: 0 auto 23px;
|
2017-06-06 21:23:10 +00:00
|
|
|
}
|
2017-06-20 19:23:12 +00:00
|
|
|
|
|
|
|
#download-progress {
|
|
|
|
margin: 0 auto;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2017-07-19 19:48:39 +00:00
|
|
|
#download-progress[hidden] {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2017-07-13 14:05:45 +00:00
|
|
|
#download-img {
|
|
|
|
width: 283px;
|
|
|
|
height: 196px;
|
2017-06-20 19:23:12 +00:00
|
|
|
}
|
2017-07-18 14:50:53 +00:00
|
|
|
|
|
|
|
/* footer */
|
|
|
|
.footer {
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
2017-07-26 14:22:16 +00:00
|
|
|
font-size: 13px;
|
2017-07-18 14:50:53 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: flex-end;
|
2017-07-25 06:12:26 +00:00
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
2017-07-25 06:52:21 +00:00
|
|
|
padding: 50px 31px 41px;
|
2017-07-25 06:12:26 +00:00
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
2017-07-18 14:50:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.mozilla-logo {
|
|
|
|
width: 112px;
|
|
|
|
height: 32px;
|
|
|
|
margin-bottom: -5px;
|
|
|
|
}
|
|
|
|
|
2017-07-25 06:12:26 +00:00
|
|
|
.legal-links {
|
2017-07-26 14:22:16 +00:00
|
|
|
width: 81vw;
|
2017-07-25 06:12:26 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
2017-07-18 14:50:53 +00:00
|
|
|
.legal-links > a {
|
|
|
|
color: #858585;
|
2017-07-25 06:12:26 +00:00
|
|
|
opacity: 0.9;
|
2017-07-26 14:22:16 +00:00
|
|
|
white-space: nowrap;
|
|
|
|
margin-right: 2vw;
|
2017-07-18 14:50:53 +00:00
|
|
|
}
|
|
|
|
|
2017-07-25 06:12:26 +00:00
|
|
|
.legal-links > a:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2017-07-18 14:50:53 +00:00
|
|
|
.legal-links > a:visited {
|
|
|
|
color: #858585;
|
|
|
|
}
|
|
|
|
|
|
|
|
.social-links {
|
|
|
|
display: flex;
|
2017-07-25 06:12:26 +00:00
|
|
|
justify-content: space-between;
|
2017-07-26 14:22:16 +00:00
|
|
|
width: 9vw;
|
|
|
|
max-width: 94px;
|
2017-07-18 14:50:53 +00:00
|
|
|
}
|
|
|
|
|
2017-07-25 06:52:21 +00:00
|
|
|
.social-links > a {
|
|
|
|
opacity: 0.9;
|
2017-07-25 06:12:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.social-links > a:hover {
|
|
|
|
opacity: 1;
|
2017-07-18 14:50:53 +00:00
|
|
|
}
|
|
|
|
|
2017-07-20 21:52:21 +00:00
|
|
|
.github,
|
|
|
|
.twitter {
|
2017-07-18 14:50:53 +00:00
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
margin-bottom: -5px;
|
|
|
|
}
|
2017-07-20 21:52:21 +00:00
|
|
|
|
2017-07-25 15:55:16 +00:00
|
|
|
@media (max-device-width: 768px), (max-width: 768px) {
|
2017-07-20 21:52:21 +00:00
|
|
|
.description {
|
|
|
|
margin: 0 auto 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#copy {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#link {
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
|
2017-07-25 06:12:26 +00:00
|
|
|
.footer {
|
|
|
|
flex-direction: column;
|
2017-07-25 07:45:58 +00:00
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: flex-start;
|
|
|
|
max-width: 630px;
|
|
|
|
margin: auto;
|
2017-07-25 06:12:26 +00:00
|
|
|
}
|
|
|
|
|
2017-07-20 21:52:21 +00:00
|
|
|
.mozilla-logo {
|
|
|
|
margin-left: -7px;
|
|
|
|
}
|
|
|
|
|
2017-07-25 06:12:26 +00:00
|
|
|
.legal-links {
|
|
|
|
flex-direction: column;
|
|
|
|
margin: auto;
|
2017-07-25 07:45:58 +00:00
|
|
|
width: 100%;
|
|
|
|
max-width: 100%;
|
2017-07-25 06:12:26 +00:00
|
|
|
}
|
|
|
|
|
2017-07-20 21:52:21 +00:00
|
|
|
.legal-links > * {
|
|
|
|
display: block;
|
|
|
|
padding: 10px 0;
|
2017-07-25 07:34:01 +00:00
|
|
|
align-self: flex-start;
|
2017-07-20 21:52:21 +00:00
|
|
|
}
|
2017-07-25 06:12:26 +00:00
|
|
|
|
|
|
|
.social-links {
|
|
|
|
margin-top: 20px;
|
2017-07-25 07:34:01 +00:00
|
|
|
align-self: flex-start;
|
2017-07-25 06:12:26 +00:00
|
|
|
}
|
2017-07-20 21:52:21 +00:00
|
|
|
}
|
|
|
|
|
2017-07-25 15:55:16 +00:00
|
|
|
@media (max-device-width: 520px), (max-width: 520px) {
|
2017-07-24 15:59:51 +00:00
|
|
|
.header {
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
|
|
|
}
|
|
|
|
|
|
|
|
.feedback {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
2017-07-20 21:52:21 +00:00
|
|
|
#copy {
|
|
|
|
width: 100%;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
#link {
|
|
|
|
font-size: 22px;
|
|
|
|
padding: 15px 10px;
|
|
|
|
border-radius: 6px 6px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#copy-btn {
|
|
|
|
border-radius: 0 0 6px 6px;
|
|
|
|
flex: 0 1 65px;
|
|
|
|
}
|
|
|
|
|
|
|
|
th {
|
|
|
|
font-size: 14px;
|
|
|
|
padding: 0 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
td {
|
|
|
|
font-size: 13px;
|
|
|
|
padding: 17px 5px 0;
|
|
|
|
}
|
|
|
|
}
|