qrbtf/src/components/Qrcode.css

551 lines
11 KiB
CSS
Raw Normal View History

2020-05-18 09:21:32 +00:00
2020-05-01 04:35:59 +00:00
.Qr-titled {
2020-05-02 12:39:02 +00:00
background-color: #f5f5f7;
2020-05-01 04:35:59 +00:00
box-sizing: border-box;
2020-05-01 10:58:11 +00:00
padding-top: calc((10px + 2vmin) * 2);
padding-bottom: calc((10px + 2vmin) * 2);
}
.Qr-titled-nobg {
padding-top: calc((10px + 2vmin) * 2);
padding-bottom: calc((10px + 2vmin) * 2);
}
.Qr-title {
2020-05-04 17:42:36 +00:00
margin-top: 2.25em;
2020-05-02 12:58:54 +00:00
font-weight: bold;
2020-05-04 17:42:36 +00:00
font-size: 2.25em;
2020-05-01 10:58:11 +00:00
}
.Qr-subtitle {
margin-top: -1em;
2020-05-01 11:46:41 +00:00
margin-bottom: 0;
2020-05-01 10:58:11 +00:00
}
.Qr-s-subtitle {
2020-05-01 11:46:41 +00:00
margin-top: 0.25em;
2020-05-01 10:58:11 +00:00
margin-bottom: 0;
2020-05-01 04:35:59 +00:00
}
.Qr-s {
overflow-x: scroll;
overflow-y: hidden;
overflow-scrolling: touch;
width: 100vw;
white-space: nowrap;
display: flex;
}
.Qr-s::-webkit-scrollbar {
display: none;
}
2020-05-05 17:07:26 +00:00
.Qr-s {
scrollbar-width: none;
}
.Qr-s {
-ms-overflow-style: none;
}
2020-05-01 04:35:59 +00:00
.Qr-s-title {
font-size: 1.4em;
}
2020-05-01 10:58:11 +00:00
.title-margin {
margin-bottom: 20px;
}
2020-05-01 04:35:59 +00:00
.Qr-box {
white-space: nowrap;
display: flex;
2020-05-03 03:22:49 +00:00
padding: 0 13px 0 23px;
2020-05-01 04:35:59 +00:00
}
@media (min-width: 1000px) {
.Qr-box {
padding-left: calc((100vw - 1000px) / 2 + 23px);
padding-right: calc((100vw - 1000px) / 2 + 13px);
2020-05-01 04:35:59 +00:00
}
}
.Qr-item {
user-select: none;
float: left;
display:block!important;
margin-right: 10px;
cursor: pointer;
2020-05-03 03:22:49 +00:00
-webkit-appearance: none;
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
2020-05-05 17:07:26 +00:00
-moz-appearance: none;
-moz-text-size-adjust: 100%;
2020-05-01 04:35:59 +00:00
}
.Qr-item-image {
/*padding: 23px;*/
2020-05-10 10:15:02 +00:00
overflow: hidden;
display: flex;
2020-05-01 04:35:59 +00:00
background-color: white;
width: calc((100vw - 56px) / 2);
height: calc((100vw - 56px) / 2);
2020-05-14 15:26:36 +00:00
border-radius: 20px;
2020-05-01 04:35:59 +00:00
box-sizing: border-box;
2020-05-01 14:26:28 +00:00
border: rgba(0,0,0,0.12) solid 2px;
2020-05-01 04:35:59 +00:00
-webkit-transition-timing-function: ease-in-out;
2020-05-05 17:07:26 +00:00
-moz-transition-timing-function: ease-in-out;
2020-05-01 04:35:59 +00:00
transition-timing-function: ease-in-out;
-webkit-transition-duration: 0.2s; /* Safari */
2020-05-05 17:07:26 +00:00
-moz-animation-duration: 0.2s;
2020-05-01 04:35:59 +00:00
transition-duration: 0.2s;
}
2020-05-01 14:26:28 +00:00
@media (min-width: 500px) {
.Qr-item-image {
border: rgba(0,0,0,0.12) solid 3px;
width: 200px;
height: 200px;
}
}
#dl-image {
padding-top: 20px;
}
#dl-image-inner {
overflow: hidden;
display: flex;
border-radius: 20px;
box-sizing: border-box;
border: rgba(0,0,0,0.12) solid 2px;
width: calc((100vw - 56px) / 2);
height: calc((100vw - 56px) / 2);
}
@media (min-width: 500px) {
#dl-image-inner {
border: rgba(0,0,0,0.12) solid 3px;
width: 200px;
height: 200px;
2020-05-01 14:26:28 +00:00
}
}
#dl-image-inner-jpg {
width: 100%;
height: 100%;
}
2020-05-01 12:32:15 +00:00
.Qr-item-image-inner {
2020-05-10 10:15:02 +00:00
justify-content: center;
2020-05-01 10:58:11 +00:00
-webkit-transition-timing-function: ease-in-out;
2020-05-05 17:07:26 +00:00
-moz-transition-timing-function: ease-in-out;
2020-05-01 10:58:11 +00:00
transition-timing-function: ease-in-out;
-webkit-transition-duration: 0.2s; /* Safari */
2020-05-05 17:07:26 +00:00
-moz-animation-duration: 0.2s;
2020-05-01 10:58:11 +00:00
transition-duration: 0.2s;
2020-05-01 12:32:15 +00:00
-webkit-transform: translateZ(0);
2020-05-05 17:07:26 +00:00
-moz-transform: translateZ(0);
2020-05-01 10:58:11 +00:00
}
2020-05-02 16:52:31 +00:00
.Qr-item-selected .Qr-item-image {
2020-05-02 16:22:05 +00:00
border-color: #44D7B6 !important;
}
2020-05-02 16:52:31 +00:00
.Qr-item-selected .Qr-item-detail {
color: #000000;
2020-05-01 04:35:59 +00:00
}
.Qr-item:hover .Qr-item-detail {
color: #000000;
}
.Qr-item-detail {
color: rgba(0,0,0,0.3);
margin-top: 5px;
font-size: 1em;
text-align: left;
-webkit-transition-timing-function: ease-in-out;
2020-05-05 17:07:26 +00:00
-moz-transition-timing-function: ease-in-out;
2020-05-01 04:35:59 +00:00
transition-timing-function: ease-in-out;
-webkit-transition-duration: 0.2s; /* Safari */
2020-05-05 17:07:26 +00:00
-moz-animation-duration: 0.2s;
2020-05-01 04:35:59 +00:00
transition-duration: 0.2s;
}
2020-05-01 11:46:41 +00:00
tr {
width: 100%;
display: inline-flex;
justify-content: space-between ;
2020-05-01 14:06:22 +00:00
align-items: center;
2020-05-01 11:46:41 +00:00
}
2020-05-01 10:58:11 +00:00
td:nth-child(1) {
2020-05-04 16:22:55 +00:00
font-size: 0.9em;
2020-05-01 11:46:41 +00:00
white-space: nowrap;
2020-05-01 10:58:11 +00:00
}
@media (min-width: 500px) {
td:nth-child(1) {
font-size: 0.8em;
}
}
2020-05-01 10:58:11 +00:00
td:nth-child(2) {
2020-05-01 11:46:41 +00:00
white-space: nowrap;
font-size: 1em;
}
td {
2020-05-15 04:13:30 +00:00
padding: 0 0 12px 0;
2020-05-01 10:58:11 +00:00
}
.big-input {
font-size: calc(10px + 2vmin);
2020-05-01 11:46:41 +00:00
margin-top: calc((10px + 2vmin) * 2);
2020-05-01 10:58:11 +00:00
margin-bottom: calc((10px + 2vmin) * 2);
2020-05-01 14:26:28 +00:00
border: rgba(0,0,0,0.12) solid 2px;
2020-05-01 11:46:41 +00:00
width: 20em;
2020-05-01 14:06:22 +00:00
max-width: calc(100vw - 46px);
2020-05-01 11:46:41 +00:00
}
2020-05-01 14:26:28 +00:00
@media (min-width: 500px) {
.big-input {
border: rgba(0,0,0,0.12) solid 3px;
}
}
2020-05-01 11:46:41 +00:00
.small-input {
2020-05-15 06:19:55 +00:00
margin: 0;
2020-05-01 14:06:22 +00:00
font-size: 0.9em;
2020-05-01 14:26:28 +00:00
border: rgba(0,0,0,0.12) solid 2px;
2020-05-01 14:06:22 +00:00
width: calc((100vw - 56px) / 2);
}
2020-05-01 14:26:28 +00:00
@media (min-width: 500px) {
.small-input {
border: rgba(0,0,0,0.12) solid 3px;
font-size: 0.8em;
2020-05-01 14:06:22 +00:00
width: 200px;
}
2020-05-01 10:58:11 +00:00
}
2020-05-01 04:35:59 +00:00
.Qr-input {
2020-05-01 12:32:15 +00:00
caret-color: #44d7b6;
2020-05-01 04:35:59 +00:00
padding: 0;
line-height: 2em;
box-sizing: border-box;
border-radius: 3em;
outline: none;
text-indent: 1em;
overflow: visible;
-webkit-transition-timing-function: ease-in-out;
2020-05-05 17:07:26 +00:00
-moz-transition-timing-function: ease-in-out;
2020-05-01 04:35:59 +00:00
transition-timing-function: ease-in-out;
-webkit-transition-duration: 0.2s; /* Safari */
2020-05-05 17:07:26 +00:00
-moz-animation-duration: 0.2s;
2020-05-01 04:35:59 +00:00
transition-duration: 0.2s;
-webkit-appearance: none;
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
2020-05-05 17:07:26 +00:00
-moz-appearance: none;
-moz-text-size-adjust: 100%;
2020-05-01 10:58:11 +00:00
font-family: 'Futura', sans-serif;
color: rgba(0,0,0,0.6);
2020-05-01 04:35:59 +00:00
}
2020-05-04 16:22:55 +00:00
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
2020-05-05 17:07:26 +00:00
-moz-appearance: none;
2020-05-04 16:22:55 +00:00
}
input[type="number"]{
-moz-appearance: textfield;
}
2020-05-04 08:51:12 +00:00
.Qr-select {
2020-05-15 04:13:30 +00:00
margin: 0;
2020-05-04 08:51:12 +00:00
line-height: 2em;
box-sizing: border-box;
border-radius: 3em;
outline: none;
overflow: visible;
-webkit-transition-timing-function: ease-in-out;
2020-05-05 17:07:26 +00:00
-moz-transition-timing-function: ease-in-out;
2020-05-04 08:51:12 +00:00
transition-timing-function: ease-in-out;
-webkit-transition-duration: 0.2s; /* Safari */
2020-05-05 17:07:26 +00:00
-moz-animation-duration: 0.2s;
2020-05-04 08:51:12 +00:00
transition-duration: 0.2s;
-webkit-appearance: none;
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
2020-05-05 17:07:26 +00:00
-moz-appearance: none;
-moz-text-size-adjust: 100%;
2020-05-04 08:51:12 +00:00
font-family: 'Futura', sans-serif;
color: rgba(0,0,0,0.6);
font-size: 0.9em;
border: rgba(0,0,0,0.12) solid 2px;
width: calc((100vw - 56px) / 2);
2020-05-05 17:07:26 +00:00
padding-left: 1em;
2020-05-04 08:51:12 +00:00
}
@media (min-width: 500px) {
.Qr-select {
border: rgba(0,0,0,0.12) solid 3px;
width: 200px;
font-size: 0.8em;
2020-05-04 08:51:12 +00:00
}
}
2020-05-01 04:35:59 +00:00
.Qr-input::placeholder {
2020-05-01 09:07:06 +00:00
font-family: 'Futura', sans-serif;
2020-05-01 04:35:59 +00:00
color: rgba(0,0,0,0.18);
}
.Qr-Centered {
padding-left: 23px;
padding-right: 23px;
max-width: 954px;
text-align: -webkit-left;
2020-05-05 17:07:26 +00:00
text-align: -moz-left;
2020-05-01 04:35:59 +00:00
}
.Qr-input:focus {
border-color: #44D7B6;
color: #000000;
2020-05-01 10:58:11 +00:00
}
2020-05-05 08:36:26 +00:00
.Qr-select:focus {
border-color: #44D7B6;
color: #000000;
}
2020-05-01 14:57:24 +00:00
2020-05-01 10:58:11 +00:00
.Qr-table {
width: 100%;
border-spacing: 0;
}
2020-05-15 04:13:30 +00:00
@media (min-width: 500px) {
.Qr-table {
width: 410px;
}
}
2020-05-01 10:58:11 +00:00
.Qr-div-table {
margin-bottom: -10px;
display: block;
}
@media (min-width: 886px) {
.Qr-div-table {
display: inline-flex;
flex-wrap: wrap;
justify-content: space-between;
margin-bottom: -10px;
}
2020-05-01 14:06:22 +00:00
}
.btn-row {
2020-05-05 13:30:31 +00:00
margin-bottom: -10px;
}
2020-05-01 14:06:22 +00:00
.div-btn {
white-space: nowrap;
overflow-x: hidden;
display: flex;
justify-content: space-between;
2020-05-05 13:30:31 +00:00
margin-bottom: 10px;
2020-05-01 14:06:22 +00:00
}
2020-05-15 09:11:07 +00:00
.ul-btn {
float: left;
}
2020-05-01 14:06:22 +00:00
.dl-btn {
cursor: pointer;
2020-05-06 05:41:33 +00:00
font-size: 0.9em;
line-height: 2em;
2020-05-01 14:06:22 +00:00
margin: 0;
width: calc((100vw - 56px) / 2);
border-radius: 3em;
outline: none;
padding: 0;
box-sizing: border-box;
2020-05-01 14:26:28 +00:00
border: rgba(0,0,0,0.12) solid 2px;
2020-05-01 14:06:22 +00:00
-webkit-transition-timing-function: ease-in-out;
2020-05-05 17:07:26 +00:00
-moz-transition-timing-function: ease-in-out;
2020-05-01 14:06:22 +00:00
transition-timing-function: ease-in-out;
-webkit-transition-duration: 0.2s; /* Safari */
2020-05-05 17:07:26 +00:00
-moz-animation-duration: 0.2s;
2020-05-01 14:06:22 +00:00
transition-duration: 0.2s;
-webkit-appearance: none;
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
2020-05-05 17:07:26 +00:00
-moz-appearance: none;
-moz-text-size-adjust: 100%;
2020-05-01 14:06:22 +00:00
background: white;
font-family: 'Futura', sans-serif;
}
2020-05-01 14:26:28 +00:00
@media (min-width: 500px) {
.dl-btn {
border: rgba(0,0,0,0.12) solid 3px;
2020-05-06 05:41:33 +00:00
font-size: 0.8em;
2020-05-01 14:26:28 +00:00
}
}
2020-05-02 18:01:07 +00:00
.dl-btn:disabled {
cursor: not-allowed;
}
.dl-btn:disabled:hover {
border-color: rgba(0,0,0,0.12);
color: graytext;
}
2020-05-01 14:06:22 +00:00
.dl-btn:hover {
border-color: #44D7B6;
color: #44D7B6;
}
2020-05-15 09:01:10 +00:00
.dl-btn-active {
border-color: #44D7B6;
color: #44D7B6;
}
2020-05-01 14:06:22 +00:00
.dl-btn:active {
-webkit-transition-duration: 0s; /* Safari */
transition-duration: 0s;
2020-05-05 17:07:26 +00:00
-moz-transition-duration: 0s;
2020-05-01 14:06:22 +00:00
border-color: #3BBC9F;
color: #3BBC9F;
}
@media (min-width: 500px) {
.div-btn {
max-width: 410px;
}
.dl-btn {
width: 200px;
}
2020-05-02 12:39:02 +00:00
}
.Qr-footer {
2020-05-03 04:42:03 +00:00
color: #1D1D1F;
2020-05-02 12:39:02 +00:00
margin-bottom: -4px;
}
2020-05-03 04:42:03 +00:00
.Gray {
color: #86868B;
}
2020-05-02 12:39:02 +00:00
.Qr-footer div {
margin-bottom: 4px;
}
a {
color: currentColor;
text-decoration: none;
}
a:hover {
text-decoration: underline;
2020-05-02 16:22:05 +00:00
}
2020-05-02 18:01:07 +00:00
#wx-message-inner {
margin-top: 20px;
}
.note-font {
font-size: 12px;
}
2020-05-18 09:21:32 +00:00
.Qr-article {
word-wrap: break-word;
margin-top: calc((10px + 1vmin) * 2);
margin-bottom: calc((10px + 2vmin) * 2);
border-spacing: 0;
}
.Qr-article p {
font-size: 14px;
line-height: 1.7em;
color: #636366;
letter-spacing: 0.05em;
}
.Qr-article p b {
font-weight: bold;
color: #000000;
}
.Qr-article p a {
font-weight: bold;
padding: 1px 0;
color: #000000;
border-bottom: 1px solid #3e4ca3;
}
.Qr-article p a:hover {
color: #000000;
border-bottom: 1px solid #3e4ca3;
text-decoration: none;
}
.Qr-article h2 {
2020-05-18 09:33:16 +00:00
word-break: break-all;
word-wrap: break-word;
2020-05-18 09:21:32 +00:00
font-size: 18px;
2020-05-18 09:33:16 +00:00
line-height: 1.7em;
2020-05-18 09:21:32 +00:00
letter-spacing: 0.05em;
2020-05-18 09:33:16 +00:00
margin-top: 1.5em;
margin-bottom: 1.5em;
2020-05-18 09:21:32 +00:00
}
@media (min-width: 500px) {
.note-font {
color: #1D1D1F;
font-size: 14px;
}
2020-05-18 09:21:32 +00:00
.Qr-article p {
font-size: 16px;
}
.Qr-article h2 {
font-size: 22px;
}
2020-05-05 07:11:00 +00:00
}
select {
padding: 0;
background-color: #FFFFFF;
2020-05-05 17:07:26 +00:00
}
select:-moz-focusring {
color: transparent;
text-shadow: 0 0 0 #000;
}
2020-05-10 16:13:38 +00:00
2020-05-15 09:01:10 +00:00
.twitter-picker {
max-width: calc(100vw - 46px)!important;
border: 0px solid rgba(0, 0, 0, 0.12) !important;
box-sizing: border-box;
border-radius: 10px!important;
box-shadow: 0px 3px 6px -4px rgba(0, 0, 0, 0.12), 0px 6px 16px 0px rgba(0, 0, 0, 0.08), 0px 9px 28px 8px rgba(0, 0, 0, 0.05) !important;
2020-05-10 16:13:38 +00:00
}
2020-05-15 09:01:10 +00:00
.twitter-picker:nth-last-child(1) input {
font: 15px 'Futura', sans-serif !important;
2020-05-15 09:15:58 +00:00
caret-color: #44d7b6;
padding: 1px 1px 1px 8px;
outline: none;
overflow: visible;
-webkit-appearance: none;
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-moz-appearance: none;
-moz-text-size-adjust: 100%;
2020-05-15 09:01:10 +00:00
}