first commit
@@ -0,0 +1,512 @@
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "TT Nooks Script";
|
||||
src: url("/fonts/TTNooksScript-Bold.woff2") format("woff2"), url("/fonts/TTNooksScript-Bold.woff") format("woff");
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Bradford LL";
|
||||
src: url("/fonts/BradfordLL-Regular.woff2") format("woff2"), url("/fonts/BradfordLL-Regular.woff") format("woff");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Bradford LL";
|
||||
src: url("/fonts/BradfordLL-Italic.woff2") format("woff2"), url("/fonts/BradfordLL-Italic.woff") format("woff");
|
||||
font-weight: normal;
|
||||
font-style: italic;
|
||||
font-display: swap;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Necto Mono";
|
||||
src: url("/fonts/Necto-Mono.woff2") format("woff2"), url("/fonts/Necto-Mono.woff") format("woff");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Debrovnik Hill Italic";
|
||||
src: url("/fonts/Debrovnik Hill Italic.ttf") format("truetype");
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Debrovnik Hill Reguler";
|
||||
src: url("/fonts/Debrovnik Hill Reguler.ttf") format("truetype");
|
||||
}
|
||||
html {
|
||||
height: 100%;
|
||||
}
|
||||
body {
|
||||
margin: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
overflow: visible;
|
||||
flex-grow: 1;
|
||||
-webkit-print-color-adjust: exact;
|
||||
}
|
||||
.logo-svg {
|
||||
transform: rotate(90deg);
|
||||
margin: 10px;
|
||||
}
|
||||
#main-letter {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: nowrap;
|
||||
width: 100%;
|
||||
/* max-width: 618px; */
|
||||
margin: auto;
|
||||
background-color: white;
|
||||
height: 100vh;
|
||||
/* min-height: 100%; */
|
||||
}
|
||||
#main-letter.print {
|
||||
max-width: unset;
|
||||
}
|
||||
#main-letter .left,
|
||||
#main-letter .right {
|
||||
width: max-content;
|
||||
padding: 20px 8px;
|
||||
font-family: "Bradford LL";
|
||||
font-style: italic;
|
||||
text-transform: capitalize;
|
||||
font-size: 20px;
|
||||
min-height: max-content;
|
||||
text-align: center;
|
||||
}
|
||||
#main-letter .left {
|
||||
transform: rotate(180deg);
|
||||
writing-mode: vertical-lr;
|
||||
margin-left: 6px;
|
||||
}
|
||||
#main-letter .right {
|
||||
writing-mode: vertical-rl;
|
||||
margin-right: 6px;
|
||||
}
|
||||
#main-letter .center {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex-grow: 1;
|
||||
border: 1px solid black;
|
||||
border-top: none;
|
||||
border-bottom: none;
|
||||
}
|
||||
#main-letter .center .top {
|
||||
padding: 20px 0 24px;
|
||||
border-bottom: 1px solid black;
|
||||
}
|
||||
#main-letter .center .top .header-logo {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: max-content;
|
||||
padding: 1px 24px;
|
||||
margin: 0 auto;
|
||||
position: relative;
|
||||
}
|
||||
#main-letter .center .top .header-logo::after {
|
||||
content: "";
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
height: 1.5px;
|
||||
border-radius: 1px;
|
||||
background-color: black;
|
||||
}
|
||||
#main-letter .center .header-logo .cr-logo {
|
||||
font-family: "TT Nooks Script";
|
||||
font-weight: 700;
|
||||
font-size: 40px;
|
||||
}
|
||||
#main-letter .center .header-logo .customer-name {
|
||||
text-align: center;
|
||||
font-family: "Debrovnik Hill Italic";
|
||||
text-transform: capitalize;
|
||||
font-weight: 700;
|
||||
color: black;
|
||||
font-size: 32px;
|
||||
}
|
||||
|
||||
#main-letter .center .middle {
|
||||
padding: 24px 56px;
|
||||
font-family: "Necto Mono";
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
border-bottom: 1px solid black;
|
||||
}
|
||||
#main-letter .center .middle .header {
|
||||
font-family: "Bradford LL";
|
||||
font-size: 28px;
|
||||
text-align: center;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
#main-letter .center .middle .body .customer-name {
|
||||
font-weight: 700;
|
||||
text-transform: capitalize;
|
||||
}
|
||||
#main-letter .center .middle .body p {
|
||||
margin-bottom: 8px;
|
||||
line-height: 140%;
|
||||
display: block;
|
||||
}
|
||||
|
||||
#main-letter .center .footer {
|
||||
margin-top: 24px;
|
||||
}
|
||||
#main-letter .center .footer h5 {
|
||||
font-family: "Bradford LL";
|
||||
font-size: 16px;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
#profile-letter {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: nowrap;
|
||||
width: 100%;
|
||||
/* min-height: 100%; */
|
||||
/* max-width: 618px; */
|
||||
margin: auto;
|
||||
height: 100vh;
|
||||
|
||||
background-color: white;
|
||||
}
|
||||
#profile-letter.print {
|
||||
max-width: unset;
|
||||
}
|
||||
#profile-letter .left,
|
||||
#profile-letter .right {
|
||||
width: max-content;
|
||||
padding: 20px 8px;
|
||||
font-family: "Bradford LL";
|
||||
font-style: italic;
|
||||
text-transform: capitalize;
|
||||
font-size: 20px;
|
||||
height: 100%;
|
||||
min-height: max-content;
|
||||
text-align: center;
|
||||
}
|
||||
#profile-letter .left {
|
||||
transform: rotate(180deg);
|
||||
writing-mode: vertical-lr;
|
||||
margin-left: 6px;
|
||||
}
|
||||
#profile-letter .right {
|
||||
writing-mode: vertical-rl;
|
||||
margin-right: 6px;
|
||||
}
|
||||
#profile-letter .center {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex-grow: 1;
|
||||
border: 1px solid black;
|
||||
border-top: none;
|
||||
border-bottom: none;
|
||||
min-height: 100%;
|
||||
align-items: center;
|
||||
}
|
||||
#profile-letter .center .header {
|
||||
font-family: "Bradford LL";
|
||||
font-weight: 500;
|
||||
font-size: 32px;
|
||||
text-transform: capitalize;
|
||||
text-align: center;
|
||||
margin-top: 8px;
|
||||
margin-bottom: 8px;
|
||||
padding: 20px 0;
|
||||
}
|
||||
#profile-letter .center .body {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#profile-letter .progress-container {
|
||||
width: 100%;
|
||||
min-width: 100%;
|
||||
padding: 14px 20px 20px 20px;
|
||||
border-bottom: 1px solid black;
|
||||
}
|
||||
#profile-letter .progress-container:last-of-type {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
#profile-letter .progress-container .profile-title h3 {
|
||||
color: #000000;
|
||||
text-align: center;
|
||||
font: italic 30px "Bradford LL";
|
||||
line-height: 40px;
|
||||
margin: 0;
|
||||
margin-bottom: 16px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
#profile-letter .progress-container .profile-body {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
#profile-letter .profile-container {
|
||||
width: 45%;
|
||||
margin: 0 0 18px 0;
|
||||
}
|
||||
#profile-letter .profile-container .title {
|
||||
font: 16px "Necto Mono";
|
||||
color: #231f20;
|
||||
margin-bottom: 8px;
|
||||
display: inline-block;
|
||||
}
|
||||
#profile-letter .profile-container .progress {
|
||||
width: 100%;
|
||||
height: 6px;
|
||||
border: 1px solid black;
|
||||
border-radius: 1px;
|
||||
text-align: left;
|
||||
}
|
||||
#profile-letter .profile-container .progress .bar {
|
||||
height: 100%;
|
||||
background-color: black;
|
||||
z-index: 9;
|
||||
}
|
||||
|
||||
#formula-letter {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: nowrap;
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
/* max-width: 618px; */
|
||||
margin: auto;
|
||||
background-color: white;
|
||||
}
|
||||
#formula-letter.print {
|
||||
max-width: unset;
|
||||
}
|
||||
#formula-letter .left,
|
||||
#formula-letter .right {
|
||||
width: max-content;
|
||||
padding: 20px 8px;
|
||||
font-family: "Bradford LL";
|
||||
font-style: italic;
|
||||
text-transform: capitalize;
|
||||
font-size: 20px;
|
||||
height: 100%;
|
||||
min-height: max-content;
|
||||
text-align: center;
|
||||
}
|
||||
#formula-letter .left {
|
||||
transform: rotate(180deg);
|
||||
writing-mode: vertical-lr;
|
||||
margin-left: 6px;
|
||||
}
|
||||
#formula-letter .right {
|
||||
writing-mode: vertical-rl;
|
||||
margin-right: 6px;
|
||||
}
|
||||
#formula-letter .center {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex-grow: 1;
|
||||
border: 1px solid black;
|
||||
border-top: none;
|
||||
border-bottom: none;
|
||||
min-height: 100%;
|
||||
align-items: center;
|
||||
}
|
||||
#formula-letter .center .header {
|
||||
font-family: "Bradford LL";
|
||||
font-weight: 500;
|
||||
font-size: 32px;
|
||||
text-transform: capitalize;
|
||||
text-align: center;
|
||||
margin-top: 8px;
|
||||
margin-bottom: 8px;
|
||||
padding: 20px 0;
|
||||
}
|
||||
#formula-letter .center .body {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
#formula-letter .center .step {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
#formula-letter .center .step div {
|
||||
width: 100%;
|
||||
}
|
||||
#formula-letter .center .step .title {
|
||||
font-family: "Bradford LL";
|
||||
font-size: 26px;
|
||||
font-style: italic;
|
||||
text-align: left;
|
||||
padding-left: 8px;
|
||||
}
|
||||
#formula-letter .center .step._two .title {
|
||||
border-bottom: 1px solid black;
|
||||
}
|
||||
#formula-letter .center .step._two .content {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
grid-auto-rows: 1fr;
|
||||
}
|
||||
#formula-letter .center .step._two .content .active {
|
||||
border-bottom: 1px solid black;
|
||||
}
|
||||
#formula-letter .center .step._two .content .active:nth-child(odd) {
|
||||
border-right: 1px solid black;
|
||||
}
|
||||
#formula-letter .center .step .content {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: nowrap;
|
||||
flex-grow: 1;
|
||||
font-family: "Necto Mono";
|
||||
}
|
||||
|
||||
#formula-letter .center .step .content .qrcode {
|
||||
width: max-content;
|
||||
margin-right: 8px;
|
||||
margin-left: 4px;
|
||||
}
|
||||
#formula-letter .center .step .content .explanation {
|
||||
font-family: "Necto Mono";
|
||||
font-size: 16px;
|
||||
font-weight: 500;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding-right: 4px;
|
||||
}
|
||||
#formula-letter .step._two .name-qrcode {
|
||||
margin-top: 4px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
#formula-letter .step._two .name-qrcode .active-name {
|
||||
padding-left: 8px;
|
||||
font-size: 15px;
|
||||
}
|
||||
#formula-letter .step._two .description {
|
||||
padding: 8px;
|
||||
font-size: 14px;
|
||||
font-size: 13px;
|
||||
text-transform: capitalize;
|
||||
}
|
||||
#formula-letter .footer-note {
|
||||
padding: 10px;
|
||||
font-family: "Bradford LL";
|
||||
font-size: 16px;
|
||||
font-style: italic;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#instructions-letter {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: nowrap;
|
||||
width: 100%;
|
||||
/* max-width: 618px; */
|
||||
margin: auto;
|
||||
background-color: white;
|
||||
height: 100vh;
|
||||
}
|
||||
#instructions-letter.print {
|
||||
max-width: unset;
|
||||
}
|
||||
#instructions-letter .left,
|
||||
#instructions-letter .right {
|
||||
width: max-content;
|
||||
padding: 20px 8px;
|
||||
font-family: "Bradford LL";
|
||||
font-style: italic;
|
||||
text-transform: capitalize;
|
||||
font-size: 20px;
|
||||
min-height: max-content;
|
||||
text-align: center;
|
||||
}
|
||||
#instructions-letter .left {
|
||||
transform: rotate(180deg);
|
||||
writing-mode: vertical-lr;
|
||||
margin-left: 6px;
|
||||
}
|
||||
#instructions-letter .right {
|
||||
writing-mode: vertical-rl;
|
||||
margin-right: 6px;
|
||||
}
|
||||
#instructions-letter .center {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex-grow: 1;
|
||||
border: 1px solid black;
|
||||
border-top: none;
|
||||
border-bottom: none;
|
||||
}
|
||||
#instructions-letter .center .header {
|
||||
font-family: "Bradford LL";
|
||||
font-weight: 500;
|
||||
font-size: 36px;
|
||||
text-transform: capitalize;
|
||||
text-align: center;
|
||||
margin-top: 8px;
|
||||
margin-bottom: 8px;
|
||||
padding: 20px 0;
|
||||
}
|
||||
#instructions-letter .section {
|
||||
padding: 8px 10px;
|
||||
}
|
||||
#instructions-letter .section .sub-header {
|
||||
font-family: "Bradford LL";
|
||||
font-weight: 500;
|
||||
margin-top: 0;
|
||||
font-size: 28px;
|
||||
font-style: italic;
|
||||
text-transform: capitalize;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
#instructions-letter .items .list {
|
||||
list-style: none;
|
||||
margin-top: 0;
|
||||
padding-left: 16px;
|
||||
font-family: "Necto Mono";
|
||||
font-size: 15px;
|
||||
line-height: 18px;
|
||||
}
|
||||
#instructions-letter .items .list li {
|
||||
padding-bottom: 6px;
|
||||
}
|
||||
#instructions-letter .items .list li ul {
|
||||
margin-top: 6px;
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
#instructions-letter .mixing-steps .list {
|
||||
margin-top: 0;
|
||||
padding-left: 56px;
|
||||
padding-right: 16px;
|
||||
font-family: "Necto Mono";
|
||||
font-size: 15px;
|
||||
line-height: 18px;
|
||||
}
|
||||
#instructions-letter .mixing-steps .list li {
|
||||
padding-bottom: 6px;
|
||||
}
|
||||
#instructions-letter .notes .list {
|
||||
list-style: disc;
|
||||
margin-top: 0;
|
||||
padding-left: 48px;
|
||||
padding-right: 16px;
|
||||
font-family: "Necto Mono";
|
||||
font-size: 15px;
|
||||
line-height: 18px;
|
||||
}
|
||||
@@ -0,0 +1,197 @@
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "TT Nooks Script";
|
||||
src: url("/fonts/TTNooksScript-Bold.woff2") format("woff2"), url("/fonts/TTNooksScript-Bold.woff") format("woff");
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Bradford LL";
|
||||
src: url("/fonts/BradfordLL-Regular.woff2") format("woff2"), url("/fonts/BradfordLL-Regular.woff") format("woff");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Bradford LL";
|
||||
src: url("/fonts/BradfordLL-Italic.woff2") format("woff2"), url("/fonts/BradfordLL-Italic.woff") format("woff");
|
||||
font-weight: normal;
|
||||
font-style: italic;
|
||||
font-display: swap;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Necto Mono";
|
||||
src: url("/fonts/Necto-Mono.woff2") format("woff2"), url("/fonts/Necto-Mono.woff") format("woff");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Debrovnik Hill Italic";
|
||||
src: url("/fonts/Debrovnik Hill Italic.ttf") format("truetype");
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Debrovnik Hill Reguler";
|
||||
src: url("/fonts/Debrovnik Hill Reguler.ttf") format("truetype");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "rotation-roman";
|
||||
src: url("/fonts/RotationLTStd-Roman.otf") format("opentype");
|
||||
}
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
}
|
||||
body {
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
-webkit-print-color-adjust: exact;
|
||||
}
|
||||
.logo-svg {
|
||||
transform: rotate(90deg);
|
||||
margin: 10px;
|
||||
}
|
||||
#formula-letter {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: nowrap;
|
||||
width: 100%;
|
||||
min-height: 100%;
|
||||
/* max-width: 618px; */
|
||||
margin: auto;
|
||||
background-color: white;
|
||||
}
|
||||
#formula-letter.print {
|
||||
max-width: unset;
|
||||
}
|
||||
#formula-letter .left,
|
||||
#formula-letter .right {
|
||||
width: max-content;
|
||||
padding: 20px 8px;
|
||||
font-family: "Bradford LL";
|
||||
font-style: italic;
|
||||
text-transform: capitalize;
|
||||
font-size: 20px;
|
||||
height: 100%;
|
||||
min-height: max-content;
|
||||
text-align: center;
|
||||
}
|
||||
#formula-letter .left {
|
||||
transform: rotate(180deg);
|
||||
margin-left: 6px;
|
||||
writing-mode: vertical-lr;
|
||||
}
|
||||
#formula-letter .right {
|
||||
margin-right: 6px;
|
||||
writing-mode: vertical-rl;
|
||||
}
|
||||
#formula-letter .center {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex-grow: 1;
|
||||
border: 1px solid black;
|
||||
border-top: none;
|
||||
border-bottom: none;
|
||||
min-height: 100%;
|
||||
align-items: center;
|
||||
}
|
||||
#formula-letter .center .header {
|
||||
font-family: "Bradford LL";
|
||||
font-weight: 500;
|
||||
font-size: 32px;
|
||||
text-transform: capitalize;
|
||||
text-align: center;
|
||||
margin-top: 8px;
|
||||
margin-bottom: 8px;
|
||||
padding: 20px 0;
|
||||
}
|
||||
#formula-letter .center .body {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
#formula-letter .center .step {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
#formula-letter .center .step div {
|
||||
width: 100%;
|
||||
}
|
||||
#formula-letter .center .step .title {
|
||||
font-family: "Bradford LL";
|
||||
font-size: 26px;
|
||||
font-style: italic;
|
||||
text-align: left;
|
||||
padding-left: 8px;
|
||||
}
|
||||
#formula-letter .center .step._two .title {
|
||||
border-bottom: 1px solid black;
|
||||
}
|
||||
#formula-letter .center .step._two .content {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
grid-auto-rows: 1fr;
|
||||
}
|
||||
#formula-letter .center .step._two .content .active {
|
||||
border-bottom: 1px solid black;
|
||||
}
|
||||
#formula-letter .center .step._two .content .active:nth-child(odd) {
|
||||
border-right: 1px solid black;
|
||||
}
|
||||
#formula-letter .center .step .content {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: nowrap;
|
||||
flex-grow: 1;
|
||||
font-family: "Necto Mono";
|
||||
}
|
||||
|
||||
#formula-letter .center .step .content .qrcode {
|
||||
width: max-content;
|
||||
margin-right: 8px;
|
||||
margin-left: 4px;
|
||||
}
|
||||
#formula-letter .center .step .content .explanation {
|
||||
font-family: "Necto Mono";
|
||||
font-size: 16px;
|
||||
font-weight: 500;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding-right: 4px;
|
||||
}
|
||||
#formula-letter .step._two .name-qrcode {
|
||||
margin-top: 4px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
#formula-letter .step._two .name-qrcode .active-name {
|
||||
padding-left: 8px;
|
||||
font-size: 15px;
|
||||
}
|
||||
#formula-letter .step._two .description {
|
||||
padding: 8px;
|
||||
font-size: 14px;
|
||||
font-size: 13px;
|
||||
text-transform: capitalize;
|
||||
}
|
||||
#formula-letter .footer-note {
|
||||
padding: 10px;
|
||||
font-family: "Bradford LL";
|
||||
font-size: 16px;
|
||||
font-style: italic;
|
||||
width: 100%;
|
||||
}
|
||||
@@ -0,0 +1,158 @@
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "TT Nooks Script";
|
||||
src: url("/fonts/TTNooksScript-Bold.woff2") format("woff2"), url("/fonts/TTNooksScript-Bold.woff") format("woff");
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Bradford LL";
|
||||
src: url("/fonts/BradfordLL-Regular.woff2") format("woff2"), url("/fonts/BradfordLL-Regular.woff") format("woff");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Bradford LL";
|
||||
src: url("/fonts/BradfordLL-Italic.woff2") format("woff2"), url("/fonts/BradfordLL-Italic.woff") format("woff");
|
||||
font-weight: normal;
|
||||
font-style: italic;
|
||||
font-display: swap;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Necto Mono";
|
||||
src: url("/fonts/Necto-Mono.woff2") format("woff2"), url("/fonts/Necto-Mono.woff") format("woff");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Debrovnik Hill Italic";
|
||||
src: url("/fonts/Debrovnik Hill Italic.ttf") format("truetype");
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Debrovnik Hill Reguler";
|
||||
src: url("/fonts/Debrovnik Hill Reguler.ttf") format("truetype");
|
||||
}
|
||||
html {
|
||||
height: 100%;
|
||||
}
|
||||
body {
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
overflow: visible;
|
||||
flex-grow: 1;
|
||||
-webkit-print-color-adjust: exact;
|
||||
}
|
||||
.logo-svg {
|
||||
transform: rotate(90deg);
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
#instructions-letter {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: nowrap;
|
||||
width: 100%;
|
||||
/* max-width: 618px; */
|
||||
margin: auto;
|
||||
background-color: white;
|
||||
height: 100%;
|
||||
min-height: 100%;
|
||||
}
|
||||
#instructions-letter.print {
|
||||
max-width: unset;
|
||||
}
|
||||
#instructions-letter .left,
|
||||
#instructions-letter .right {
|
||||
width: max-content;
|
||||
padding: 20px 8px;
|
||||
font-family: "Bradford LL";
|
||||
font-style: italic;
|
||||
text-transform: capitalize;
|
||||
font-size: 20px;
|
||||
min-height: max-content;
|
||||
text-align: center;
|
||||
}
|
||||
#instructions-letter .left {
|
||||
transform: rotate(180deg);
|
||||
writing-mode: vertical-lr;
|
||||
margin-left: 6px;
|
||||
}
|
||||
#instructions-letter .right {
|
||||
margin-right: 6px;
|
||||
writing-mode: vertical-rl;
|
||||
}
|
||||
#instructions-letter .center {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex-grow: 1;
|
||||
border: 1px solid black;
|
||||
border-top: none;
|
||||
border-bottom: none;
|
||||
}
|
||||
#instructions-letter .center .header {
|
||||
font-family: "Bradford LL";
|
||||
font-weight: 500;
|
||||
font-size: 36px;
|
||||
text-transform: capitalize;
|
||||
text-align: center;
|
||||
margin-top: 8px;
|
||||
margin-bottom: 8px;
|
||||
padding: 20px 0;
|
||||
}
|
||||
#instructions-letter .section {
|
||||
padding: 8px 10px;
|
||||
}
|
||||
#instructions-letter .section .sub-header {
|
||||
font-family: "Bradford LL";
|
||||
font-weight: 500;
|
||||
margin-top: 0;
|
||||
font-size: 28px;
|
||||
font-style: italic;
|
||||
text-transform: capitalize;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
#instructions-letter .items .list {
|
||||
list-style: none;
|
||||
margin-top: 0;
|
||||
padding-left: 16px;
|
||||
font-family: "Necto Mono";
|
||||
font-size: 15px;
|
||||
line-height: 18px;
|
||||
}
|
||||
#instructions-letter .items .list li {
|
||||
padding-bottom: 6px;
|
||||
}
|
||||
#instructions-letter .items .list li ul {
|
||||
margin-top: 6px;
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
#instructions-letter .mixing-steps .list {
|
||||
margin-top: 0;
|
||||
padding-left: 56px;
|
||||
padding-right: 16px;
|
||||
font-family: "Necto Mono";
|
||||
font-size: 15px;
|
||||
line-height: 18px;
|
||||
}
|
||||
#instructions-letter .mixing-steps .list li {
|
||||
padding-bottom: 6px;
|
||||
}
|
||||
#instructions-letter .notes .list {
|
||||
list-style: disc;
|
||||
margin-top: 0;
|
||||
padding-left: 48px;
|
||||
padding-right: 16px;
|
||||
font-family: "Necto Mono";
|
||||
font-size: 15px;
|
||||
line-height: 18px;
|
||||
}
|
||||
@@ -0,0 +1,164 @@
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "TT Nooks Script";
|
||||
src: url("/fonts/TTNooksScript-Bold.woff2") format("woff2"), url("/fonts/TTNooksScript-Bold.woff") format("woff");
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Bradford LL";
|
||||
src: url("/fonts/BradfordLL-Regular.woff2") format("woff2"), url("/fonts/BradfordLL-Regular.woff") format("woff");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Bradford LL";
|
||||
src: url("/fonts/BradfordLL-Italic.woff2") format("woff2"), url("/fonts/BradfordLL-Italic.woff") format("woff");
|
||||
font-weight: normal;
|
||||
font-style: italic;
|
||||
font-display: swap;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Necto Mono";
|
||||
src: url("/fonts/Necto-Mono.woff2") format("woff2"), url("/fonts/Necto-Mono.woff") format("woff");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Debrovnik Hill Italic";
|
||||
src: url("/fonts/Debrovnik Hill Italic.ttf") format("truetype");
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Debrovnik Hill Reguler";
|
||||
src: url("/fonts/Debrovnik Hill Reguler.ttf") format("truetype");
|
||||
}
|
||||
html {
|
||||
height: 100%;
|
||||
}
|
||||
body {
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
overflow: visible;
|
||||
flex-grow: 1;
|
||||
-webkit-print-color-adjust: exact;
|
||||
}
|
||||
#main-letter {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: nowrap;
|
||||
width: 100%;
|
||||
margin: auto;
|
||||
background-color: white;
|
||||
height: 100%;
|
||||
min-height: 100%;
|
||||
}
|
||||
#main-letter.print {
|
||||
max-width: unset;
|
||||
}
|
||||
#main-letter .left,
|
||||
#main-letter .right {
|
||||
width: max-content;
|
||||
padding: 20px 8px;
|
||||
font-family: "Bradford LL";
|
||||
font-style: italic;
|
||||
text-transform: capitalize;
|
||||
font-size: 20px;
|
||||
min-height: max-content;
|
||||
text-align: center;
|
||||
}
|
||||
#main-letter .left {
|
||||
transform: rotate(180deg);
|
||||
writing-mode: vertical-lr;
|
||||
margin-left: 6px;
|
||||
}
|
||||
#main-letter .right {
|
||||
writing-mode: vertical-rl;
|
||||
margin-right: 6px;
|
||||
}
|
||||
#main-letter .center {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex-grow: 1;
|
||||
border: 1px solid black;
|
||||
border-top: none;
|
||||
border-bottom: none;
|
||||
}
|
||||
#main-letter .center .top {
|
||||
padding: 20px 0 24px;
|
||||
border-bottom: 1px solid black;
|
||||
}
|
||||
#main-letter .center .top .header-logo {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: max-content;
|
||||
padding: 1px 24px;
|
||||
margin: 0 auto;
|
||||
position: relative;
|
||||
}
|
||||
#main-letter .center .top .header-logo::after {
|
||||
content: "";
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
height: 1.5px;
|
||||
border-radius: 1px;
|
||||
background-color: black;
|
||||
}
|
||||
#main-letter .center .header-logo .cr-logo {
|
||||
font-family: "TT Nooks Script";
|
||||
font-weight: 700;
|
||||
font-size: 40px;
|
||||
}
|
||||
#main-letter .center .header-logo .customer-name {
|
||||
text-align: center;
|
||||
font-family: "Debrovnik Hill Italic";
|
||||
text-transform: capitalize;
|
||||
font-weight: 700;
|
||||
color: black;
|
||||
font-size: 32px;
|
||||
}
|
||||
|
||||
#main-letter .center .middle {
|
||||
padding: 24px 56px;
|
||||
font-family: "Necto Mono";
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
border-bottom: 1px solid black;
|
||||
}
|
||||
#main-letter .center .middle .header {
|
||||
font-family: "Bradford LL";
|
||||
font-size: 28px;
|
||||
text-align: center;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
#main-letter .center .middle .body .customer-name {
|
||||
font-weight: 700;
|
||||
text-transform: capitalize;
|
||||
}
|
||||
#main-letter .center .middle .body p {
|
||||
margin-bottom: 8px;
|
||||
line-height: 140%;
|
||||
display: block;
|
||||
}
|
||||
.logo-svg {
|
||||
transform: rotate(90deg);
|
||||
margin: 10px;
|
||||
}
|
||||
#main-letter .center .footer {
|
||||
margin-top: 24px;
|
||||
}
|
||||
#main-letter .center .footer h5 {
|
||||
font-family: "Bradford LL";
|
||||
font-size: 16px;
|
||||
font-style: italic;
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
|
||||
@import "https://unpkg.com/uppload/dist/uppload.css";
|
||||
@import "https://unpkg.com/uppload/dist/themes/light.css";
|
||||
@@ -0,0 +1,169 @@
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "TT Nooks Script";
|
||||
src: url("/fonts/TTNooksScript-Bold.woff2") format("woff2"), url("/fonts/TTNooksScript-Bold.woff") format("woff");
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Bradford LL";
|
||||
src: url("/fonts/BradfordLL-Regular.woff2") format("woff2"), url("/fonts/BradfordLL-Regular.woff") format("woff");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Bradford LL";
|
||||
src: url("/fonts/BradfordLL-Italic.woff2") format("woff2"), url("/fonts/BradfordLL-Italic.woff") format("woff");
|
||||
font-weight: normal;
|
||||
font-style: italic;
|
||||
font-display: swap;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Necto Mono";
|
||||
src: url("/fonts/Necto-Mono.woff2") format("woff2"), url("/fonts/Necto-Mono.woff") format("woff");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Debrovnik Hill Italic";
|
||||
src: url("/fonts/Debrovnik Hill Italic.ttf") format("truetype");
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Debrovnik Hill Reguler";
|
||||
src: url("/fonts/Debrovnik Hill Reguler.ttf") format("truetype");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "rotation-roman";
|
||||
src: url("/fonts/RotationLTStd-Roman.otf") format("opentype");
|
||||
}
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
}
|
||||
body {
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
-webkit-print-color-adjust: exact;
|
||||
}
|
||||
.logo-svg {
|
||||
transform: rotate(90deg);
|
||||
margin: 10px;
|
||||
}
|
||||
#profile-letter {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: nowrap;
|
||||
width: 100%;
|
||||
min-height: 100%;
|
||||
/* max-width: 618px; */
|
||||
margin: auto;
|
||||
background-color: white;
|
||||
}
|
||||
#profile-letter.print {
|
||||
max-width: unset;
|
||||
}
|
||||
#profile-letter .left,
|
||||
#profile-letter .right {
|
||||
width: max-content;
|
||||
padding: 20px 8px;
|
||||
font-family: "Bradford LL";
|
||||
font-style: italic;
|
||||
text-transform: capitalize;
|
||||
font-size: 20px;
|
||||
height: 100%;
|
||||
min-height: max-content;
|
||||
text-align: center;
|
||||
}
|
||||
#profile-letter .left {
|
||||
transform: rotate(180deg);
|
||||
margin-left: 6px;
|
||||
writing-mode: vertical-lr;
|
||||
}
|
||||
#profile-letter .right {
|
||||
margin-right: 6px;
|
||||
writing-mode: vertical-rl;
|
||||
}
|
||||
#profile-letter .center {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex-grow: 1;
|
||||
border: 1px solid black;
|
||||
border-top: none;
|
||||
border-bottom: none;
|
||||
min-height: 100%;
|
||||
align-items: center;
|
||||
}
|
||||
#profile-letter .center .header {
|
||||
font-family: "Bradford LL";
|
||||
font-weight: 500;
|
||||
font-size: 32px;
|
||||
text-transform: capitalize;
|
||||
text-align: center;
|
||||
margin-top: 8px;
|
||||
margin-bottom: 8px;
|
||||
padding: 20px 0;
|
||||
}
|
||||
#profile-letter .center .body {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#profile-letter .progress-container {
|
||||
width: 100%;
|
||||
min-width: 100%;
|
||||
padding: 14px 20px 20px 20px;
|
||||
border-bottom: 1px solid black;
|
||||
}
|
||||
#profile-letter .progress-container:last-of-type {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
#profile-letter .progress-container .profile-title h3 {
|
||||
color: #000000;
|
||||
text-align: center;
|
||||
font: italic 30px "Bradford LL";
|
||||
line-height: 40px;
|
||||
margin: 0;
|
||||
margin-bottom: 16px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
#profile-letter .progress-container .profile-body {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
#profile-letter .profile-container {
|
||||
width: 45%;
|
||||
margin: 0 0 18px 0;
|
||||
}
|
||||
#profile-letter .profile-container .title {
|
||||
font: 16px "Necto Mono";
|
||||
color: #231f20;
|
||||
margin-bottom: 8px;
|
||||
display: inline-block;
|
||||
}
|
||||
#profile-letter .profile-container .progress {
|
||||
width: 100%;
|
||||
height: 6px;
|
||||
border: 1px solid black;
|
||||
border-radius: 1px;
|
||||
text-align: left;
|
||||
}
|
||||
#profile-letter .profile-container .progress .bar {
|
||||
height: 100%;
|
||||
background-color: black;
|
||||
z-index: 9;
|
||||
}
|
||||
@@ -0,0 +1,709 @@
|
||||
.select2-container {
|
||||
box-sizing: border-box;
|
||||
display: inline-block;
|
||||
margin: 0;
|
||||
position: relative;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.select2-container .select2-selection--single {
|
||||
box-sizing: border-box;
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
height: 28px;
|
||||
user-select: none;
|
||||
-webkit-user-select: none;
|
||||
}
|
||||
.select2-container .select2-selection--single .select2-selection__rendered {
|
||||
display: block;
|
||||
padding-left: 8px;
|
||||
padding-right: 20px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.select2-container .select2-selection--single .select2-selection__clear {
|
||||
background-color: transparent;
|
||||
border: none;
|
||||
font-size: 1em;
|
||||
}
|
||||
.select2-container[dir='rtl']
|
||||
.select2-selection--single
|
||||
.select2-selection__rendered {
|
||||
padding-right: 8px;
|
||||
padding-left: 20px;
|
||||
}
|
||||
.select2-container .select2-selection--multiple {
|
||||
box-sizing: border-box;
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
min-height: 32px;
|
||||
user-select: none;
|
||||
-webkit-user-select: none;
|
||||
}
|
||||
.select2-container .select2-selection--multiple .select2-selection__rendered {
|
||||
display: inline;
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
.select2-container .select2-selection--multiple .select2-selection__clear {
|
||||
background-color: transparent;
|
||||
border: none;
|
||||
font-size: 1em;
|
||||
}
|
||||
.select2-container .select2-search--inline .select2-search__field {
|
||||
box-sizing: border-box;
|
||||
border: none;
|
||||
font-size: 100%;
|
||||
margin-top: 5px;
|
||||
margin-left: 5px;
|
||||
padding: 0;
|
||||
max-width: 100%;
|
||||
resize: none;
|
||||
height: 18px;
|
||||
vertical-align: bottom;
|
||||
font-family: sans-serif;
|
||||
overflow: hidden;
|
||||
word-break: keep-all;
|
||||
}
|
||||
.select2-container
|
||||
.select2-search--inline
|
||||
.select2-search__field::-webkit-search-cancel-button {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
.select2-dropdown {
|
||||
background-color: white;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 4px;
|
||||
box-sizing: border-box;
|
||||
display: block;
|
||||
position: absolute;
|
||||
left: -100000px;
|
||||
width: 100%;
|
||||
z-index: 1051;
|
||||
}
|
||||
.select2-results {
|
||||
display: block;
|
||||
}
|
||||
.select2-results__options {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.select2-results__option {
|
||||
padding: 6px;
|
||||
user-select: none;
|
||||
-webkit-user-select: none;
|
||||
}
|
||||
.select2-results__option--selectable {
|
||||
cursor: pointer;
|
||||
}
|
||||
.select2-container--open .select2-dropdown {
|
||||
left: 0;
|
||||
}
|
||||
.select2-container--open .select2-dropdown--above {
|
||||
border-bottom: none;
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
}
|
||||
.select2-container--open .select2-dropdown--below {
|
||||
border-top: none;
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0;
|
||||
}
|
||||
.select2-search--dropdown {
|
||||
display: block;
|
||||
padding: 4px;
|
||||
}
|
||||
.select2-search--dropdown .select2-search__field {
|
||||
padding: 4px;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
.select2-search--dropdown.select2-search--hide {
|
||||
display: none;
|
||||
}
|
||||
.select2-close-mask {
|
||||
border: 0;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
display: block;
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
min-height: 100%;
|
||||
min-width: 100%;
|
||||
height: auto;
|
||||
width: auto;
|
||||
opacity: 0;
|
||||
z-index: 99;
|
||||
background-color: #fff;
|
||||
filter: alpha(opacity=0);
|
||||
}
|
||||
.select2-hidden-accessible {
|
||||
border: 0 !important;
|
||||
clip: rect(0 0 0 0) !important;
|
||||
-webkit-clip-path: inset(50%) !important;
|
||||
clip-path: inset(50%) !important;
|
||||
height: 1px !important;
|
||||
overflow: hidden !important;
|
||||
padding: 0 !important;
|
||||
position: absolute !important;
|
||||
width: 1px !important;
|
||||
white-space: nowrap !important;
|
||||
}
|
||||
.select2-container--default .select2-selection--single {
|
||||
background-color: #fff;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 4px;
|
||||
}
|
||||
.select2-container--default
|
||||
.select2-selection--single
|
||||
.select2-selection__rendered {
|
||||
color: #444;
|
||||
line-height: 28px;
|
||||
}
|
||||
.select2-container--default
|
||||
.select2-selection--single
|
||||
.select2-selection__clear {
|
||||
cursor: pointer;
|
||||
float: right;
|
||||
font-weight: bold;
|
||||
height: 26px;
|
||||
margin-right: 20px;
|
||||
padding-right: 0px;
|
||||
}
|
||||
.select2-container--default
|
||||
.select2-selection--single
|
||||
.select2-selection__placeholder {
|
||||
color: #999;
|
||||
}
|
||||
.select2-container--default
|
||||
.select2-selection--single
|
||||
.select2-selection__arrow {
|
||||
height: 26px;
|
||||
position: absolute;
|
||||
top: 1px;
|
||||
right: 1px;
|
||||
width: 20px;
|
||||
}
|
||||
.select2-container--default
|
||||
.select2-selection--single
|
||||
.select2-selection__arrow
|
||||
b {
|
||||
border-color: #888 transparent transparent transparent;
|
||||
border-style: solid;
|
||||
border-width: 5px 4px 0 4px;
|
||||
height: 0;
|
||||
left: 50%;
|
||||
margin-left: -4px;
|
||||
margin-top: -2px;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
width: 0;
|
||||
}
|
||||
.select2-container--default[dir='rtl']
|
||||
.select2-selection--single
|
||||
.select2-selection__clear {
|
||||
float: left;
|
||||
}
|
||||
.select2-container--default[dir='rtl']
|
||||
.select2-selection--single
|
||||
.select2-selection__arrow {
|
||||
left: 1px;
|
||||
right: auto;
|
||||
}
|
||||
.select2-container--default.select2-container--disabled
|
||||
.select2-selection--single {
|
||||
background-color: #eee;
|
||||
cursor: default;
|
||||
}
|
||||
.select2-container--default.select2-container--disabled
|
||||
.select2-selection--single
|
||||
.select2-selection__clear {
|
||||
display: none;
|
||||
}
|
||||
.select2-container--default.select2-container--open
|
||||
.select2-selection--single
|
||||
.select2-selection__arrow
|
||||
b {
|
||||
border-color: transparent transparent #888 transparent;
|
||||
border-width: 0 4px 5px 4px;
|
||||
}
|
||||
.select2-container--default .select2-selection--multiple {
|
||||
background-color: white;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 4px;
|
||||
cursor: text;
|
||||
padding-bottom: 5px;
|
||||
padding-right: 5px;
|
||||
position: relative;
|
||||
}
|
||||
.select2-container--default
|
||||
.select2-selection--multiple.select2-selection--clearable {
|
||||
padding-right: 25px;
|
||||
}
|
||||
.select2-container--default
|
||||
.select2-selection--multiple
|
||||
.select2-selection__clear {
|
||||
cursor: pointer;
|
||||
font-weight: bold;
|
||||
height: 20px;
|
||||
margin-right: 10px;
|
||||
margin-top: 5px;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
padding: 1px;
|
||||
}
|
||||
.select2-container--default
|
||||
.select2-selection--multiple
|
||||
.select2-selection__choice {
|
||||
background-color: #e4e4e4;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 4px;
|
||||
box-sizing: border-box;
|
||||
display: inline-block;
|
||||
margin-left: 5px;
|
||||
margin-top: 5px;
|
||||
padding: 0;
|
||||
padding-left: 20px;
|
||||
position: relative;
|
||||
max-width: 100%;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
vertical-align: bottom;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.select2-container--default
|
||||
.select2-selection--multiple
|
||||
.select2-selection__choice__display {
|
||||
cursor: default;
|
||||
padding-left: 2px;
|
||||
padding-right: 5px;
|
||||
}
|
||||
.select2-container--default
|
||||
.select2-selection--multiple
|
||||
.select2-selection__choice__remove {
|
||||
background-color: transparent;
|
||||
border: none;
|
||||
border-right: 1px solid #aaa;
|
||||
border-top-left-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
color: #999;
|
||||
cursor: pointer;
|
||||
font-size: 1em;
|
||||
font-weight: bold;
|
||||
padding: 0 4px;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
}
|
||||
.select2-container--default
|
||||
.select2-selection--multiple
|
||||
.select2-selection__choice__remove:hover,
|
||||
.select2-container--default
|
||||
.select2-selection--multiple
|
||||
.select2-selection__choice__remove:focus {
|
||||
background-color: #f1f1f1;
|
||||
color: #333;
|
||||
outline: none;
|
||||
}
|
||||
.select2-container--default[dir='rtl']
|
||||
.select2-selection--multiple
|
||||
.select2-selection__choice {
|
||||
margin-left: 5px;
|
||||
margin-right: auto;
|
||||
}
|
||||
.select2-container--default[dir='rtl']
|
||||
.select2-selection--multiple
|
||||
.select2-selection__choice__display {
|
||||
padding-left: 5px;
|
||||
padding-right: 2px;
|
||||
}
|
||||
.select2-container--default[dir='rtl']
|
||||
.select2-selection--multiple
|
||||
.select2-selection__choice__remove {
|
||||
border-left: 1px solid #aaa;
|
||||
border-right: none;
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-left-radius: 0;
|
||||
border-top-right-radius: 4px;
|
||||
border-bottom-right-radius: 4px;
|
||||
}
|
||||
.select2-container--default[dir='rtl']
|
||||
.select2-selection--multiple
|
||||
.select2-selection__clear {
|
||||
float: left;
|
||||
margin-left: 10px;
|
||||
margin-right: auto;
|
||||
}
|
||||
.select2-container--default.select2-container--focus
|
||||
.select2-selection--multiple {
|
||||
border: solid black 1px;
|
||||
outline: 0;
|
||||
}
|
||||
.select2-container--default.select2-container--disabled
|
||||
.select2-selection--multiple {
|
||||
background-color: #eee;
|
||||
cursor: default;
|
||||
}
|
||||
.select2-container--default.select2-container--disabled
|
||||
.select2-selection__choice__remove {
|
||||
display: none;
|
||||
}
|
||||
.select2-container--default.select2-container--open.select2-container--above
|
||||
.select2-selection--single,
|
||||
.select2-container--default.select2-container--open.select2-container--above
|
||||
.select2-selection--multiple {
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0;
|
||||
}
|
||||
.select2-container--default.select2-container--open.select2-container--below
|
||||
.select2-selection--single,
|
||||
.select2-container--default.select2-container--open.select2-container--below
|
||||
.select2-selection--multiple {
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
}
|
||||
.select2-container--default .select2-search--dropdown .select2-search__field {
|
||||
border: 1px solid #aaa;
|
||||
}
|
||||
.select2-container--default .select2-search--inline .select2-search__field {
|
||||
background: transparent;
|
||||
border: none;
|
||||
outline: 0;
|
||||
box-shadow: none;
|
||||
-webkit-appearance: textfield;
|
||||
}
|
||||
.select2-container--default .select2-results > .select2-results__options {
|
||||
max-height: 200px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.select2-container--default .select2-results__option .select2-results__option {
|
||||
padding-left: 1em;
|
||||
}
|
||||
.select2-container--default
|
||||
.select2-results__option
|
||||
.select2-results__option
|
||||
.select2-results__group {
|
||||
padding-left: 0;
|
||||
}
|
||||
.select2-container--default
|
||||
.select2-results__option
|
||||
.select2-results__option
|
||||
.select2-results__option {
|
||||
margin-left: -1em;
|
||||
padding-left: 2em;
|
||||
}
|
||||
.select2-container--default
|
||||
.select2-results__option
|
||||
.select2-results__option
|
||||
.select2-results__option
|
||||
.select2-results__option {
|
||||
margin-left: -2em;
|
||||
padding-left: 3em;
|
||||
}
|
||||
.select2-container--default
|
||||
.select2-results__option
|
||||
.select2-results__option
|
||||
.select2-results__option
|
||||
.select2-results__option
|
||||
.select2-results__option {
|
||||
margin-left: -3em;
|
||||
padding-left: 4em;
|
||||
}
|
||||
.select2-container--default
|
||||
.select2-results__option
|
||||
.select2-results__option
|
||||
.select2-results__option
|
||||
.select2-results__option
|
||||
.select2-results__option
|
||||
.select2-results__option {
|
||||
margin-left: -4em;
|
||||
padding-left: 5em;
|
||||
}
|
||||
.select2-container--default
|
||||
.select2-results__option
|
||||
.select2-results__option
|
||||
.select2-results__option
|
||||
.select2-results__option
|
||||
.select2-results__option
|
||||
.select2-results__option
|
||||
.select2-results__option {
|
||||
margin-left: -5em;
|
||||
padding-left: 6em;
|
||||
}
|
||||
.select2-container--default .select2-results__option--group {
|
||||
padding: 0;
|
||||
}
|
||||
.select2-container--default .select2-results__option--disabled {
|
||||
color: #999;
|
||||
}
|
||||
.select2-container--default .select2-results__option--selected {
|
||||
background-color: #ddd;
|
||||
}
|
||||
.select2-container--default
|
||||
.select2-results__option--highlighted.select2-results__option--selectable {
|
||||
background-color: #5897fb;
|
||||
color: white;
|
||||
}
|
||||
.select2-container--default .select2-results__group {
|
||||
cursor: default;
|
||||
display: block;
|
||||
padding: 6px;
|
||||
}
|
||||
.select2-container--classic .select2-selection--single {
|
||||
background-color: #f7f7f7;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 4px;
|
||||
outline: 0;
|
||||
background-image: -webkit-linear-gradient(top, #fff 50%, #eee 100%);
|
||||
background-image: -o-linear-gradient(top, #fff 50%, #eee 100%);
|
||||
background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
|
||||
}
|
||||
.select2-container--classic .select2-selection--single:focus {
|
||||
border: 1px solid #5897fb;
|
||||
}
|
||||
.select2-container--classic
|
||||
.select2-selection--single
|
||||
.select2-selection__rendered {
|
||||
color: #444;
|
||||
line-height: 28px;
|
||||
}
|
||||
.select2-container--classic
|
||||
.select2-selection--single
|
||||
.select2-selection__clear {
|
||||
cursor: pointer;
|
||||
float: right;
|
||||
font-weight: bold;
|
||||
height: 26px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
.select2-container--classic
|
||||
.select2-selection--single
|
||||
.select2-selection__placeholder {
|
||||
color: #999;
|
||||
}
|
||||
.select2-container--classic
|
||||
.select2-selection--single
|
||||
.select2-selection__arrow {
|
||||
background-color: #ddd;
|
||||
border: none;
|
||||
border-left: 1px solid #aaa;
|
||||
border-top-right-radius: 4px;
|
||||
border-bottom-right-radius: 4px;
|
||||
height: 26px;
|
||||
position: absolute;
|
||||
top: 1px;
|
||||
right: 1px;
|
||||
width: 20px;
|
||||
background-image: -webkit-linear-gradient(top, #eee 50%, #ccc 100%);
|
||||
background-image: -o-linear-gradient(top, #eee 50%, #ccc 100%);
|
||||
background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0);
|
||||
}
|
||||
.select2-container--classic
|
||||
.select2-selection--single
|
||||
.select2-selection__arrow
|
||||
b {
|
||||
border-color: #888 transparent transparent transparent;
|
||||
border-style: solid;
|
||||
border-width: 5px 4px 0 4px;
|
||||
height: 0;
|
||||
left: 50%;
|
||||
margin-left: -4px;
|
||||
margin-top: -2px;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
width: 0;
|
||||
}
|
||||
.select2-container--classic[dir='rtl']
|
||||
.select2-selection--single
|
||||
.select2-selection__clear {
|
||||
float: left;
|
||||
}
|
||||
.select2-container--classic[dir='rtl']
|
||||
.select2-selection--single
|
||||
.select2-selection__arrow {
|
||||
border: none;
|
||||
border-right: 1px solid #aaa;
|
||||
border-radius: 0;
|
||||
border-top-left-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
left: 1px;
|
||||
right: auto;
|
||||
}
|
||||
.select2-container--classic.select2-container--open .select2-selection--single {
|
||||
border: 1px solid #5897fb;
|
||||
}
|
||||
.select2-container--classic.select2-container--open
|
||||
.select2-selection--single
|
||||
.select2-selection__arrow {
|
||||
background: transparent;
|
||||
border: none;
|
||||
}
|
||||
.select2-container--classic.select2-container--open
|
||||
.select2-selection--single
|
||||
.select2-selection__arrow
|
||||
b {
|
||||
border-color: transparent transparent #888 transparent;
|
||||
border-width: 0 4px 5px 4px;
|
||||
}
|
||||
.select2-container--classic.select2-container--open.select2-container--above
|
||||
.select2-selection--single {
|
||||
border-top: none;
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0;
|
||||
background-image: -webkit-linear-gradient(top, #fff 0%, #eee 50%);
|
||||
background-image: -o-linear-gradient(top, #fff 0%, #eee 50%);
|
||||
background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
|
||||
}
|
||||
.select2-container--classic.select2-container--open.select2-container--below
|
||||
.select2-selection--single {
|
||||
border-bottom: none;
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
background-image: -webkit-linear-gradient(top, #eee 50%, #fff 100%);
|
||||
background-image: -o-linear-gradient(top, #eee 50%, #fff 100%);
|
||||
background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0);
|
||||
}
|
||||
.select2-container--classic .select2-selection--multiple {
|
||||
background-color: white;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 4px;
|
||||
cursor: text;
|
||||
outline: 0;
|
||||
padding-bottom: 5px;
|
||||
padding-right: 5px;
|
||||
}
|
||||
.select2-container--classic .select2-selection--multiple:focus {
|
||||
border: 1px solid #5897fb;
|
||||
}
|
||||
.select2-container--classic
|
||||
.select2-selection--multiple
|
||||
.select2-selection__clear {
|
||||
display: none;
|
||||
}
|
||||
.select2-container--classic
|
||||
.select2-selection--multiple
|
||||
.select2-selection__choice {
|
||||
background-color: #e4e4e4;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 4px;
|
||||
display: inline-block;
|
||||
margin-left: 5px;
|
||||
margin-top: 5px;
|
||||
padding: 0;
|
||||
}
|
||||
.select2-container--classic
|
||||
.select2-selection--multiple
|
||||
.select2-selection__choice__display {
|
||||
cursor: default;
|
||||
padding-left: 2px;
|
||||
padding-right: 5px;
|
||||
}
|
||||
.select2-container--classic
|
||||
.select2-selection--multiple
|
||||
.select2-selection__choice__remove {
|
||||
background-color: transparent;
|
||||
border: none;
|
||||
border-top-left-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
color: #888;
|
||||
cursor: pointer;
|
||||
font-size: 1em;
|
||||
font-weight: bold;
|
||||
padding: 0 4px;
|
||||
}
|
||||
.select2-container--classic
|
||||
.select2-selection--multiple
|
||||
.select2-selection__choice__remove:hover {
|
||||
color: #555;
|
||||
outline: none;
|
||||
}
|
||||
.select2-container--classic[dir='rtl']
|
||||
.select2-selection--multiple
|
||||
.select2-selection__choice {
|
||||
margin-left: 5px;
|
||||
margin-right: auto;
|
||||
}
|
||||
.select2-container--classic[dir='rtl']
|
||||
.select2-selection--multiple
|
||||
.select2-selection__choice__display {
|
||||
padding-left: 5px;
|
||||
padding-right: 2px;
|
||||
}
|
||||
.select2-container--classic[dir='rtl']
|
||||
.select2-selection--multiple
|
||||
.select2-selection__choice__remove {
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-left-radius: 0;
|
||||
border-top-right-radius: 4px;
|
||||
border-bottom-right-radius: 4px;
|
||||
}
|
||||
.select2-container--classic.select2-container--open
|
||||
.select2-selection--multiple {
|
||||
border: 1px solid #5897fb;
|
||||
}
|
||||
.select2-container--classic.select2-container--open.select2-container--above
|
||||
.select2-selection--multiple {
|
||||
border-top: none;
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0;
|
||||
}
|
||||
.select2-container--classic.select2-container--open.select2-container--below
|
||||
.select2-selection--multiple {
|
||||
border-bottom: none;
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
}
|
||||
.select2-container--classic .select2-search--dropdown .select2-search__field {
|
||||
border: 1px solid #aaa;
|
||||
outline: 0;
|
||||
}
|
||||
.select2-container--classic .select2-search--inline .select2-search__field {
|
||||
outline: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
.select2-container--classic .select2-dropdown {
|
||||
background-color: #fff;
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
.select2-container--classic .select2-dropdown--above {
|
||||
border-bottom: none;
|
||||
}
|
||||
.select2-container--classic .select2-dropdown--below {
|
||||
border-top: none;
|
||||
}
|
||||
.select2-container--classic .select2-results > .select2-results__options {
|
||||
max-height: 200px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.select2-container--classic .select2-results__option--group {
|
||||
padding: 0;
|
||||
}
|
||||
.select2-container--classic .select2-results__option--disabled {
|
||||
color: grey;
|
||||
}
|
||||
.select2-container--classic
|
||||
.select2-results__option--highlighted.select2-results__option--selectable {
|
||||
background-color: #3875d7;
|
||||
color: #fff;
|
||||
}
|
||||
.select2-container--classic .select2-results__group {
|
||||
cursor: default;
|
||||
display: block;
|
||||
padding: 6px;
|
||||
}
|
||||
.select2-container--classic.select2-container--open .select2-dropdown {
|
||||
border-color: #5897fb;
|
||||
}
|
||||
@@ -0,0 +1,880 @@
|
||||
@charset "UTF-8";
|
||||
@font-face {
|
||||
font-family: "TT Nooks Script";
|
||||
src: url("/fonts/TTNooksScript-Bold.woff2") format("woff2"), url("/fonts/TTNooksScript-Bold.woff") format("woff");
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Bradford LL";
|
||||
src: url("/fonts/BradfordLL-Regular.woff2") format("woff2"), url("/fonts/BradfordLL-Regular.woff") format("woff");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Bradford LL";
|
||||
src: url("/fonts/BradfordLL-Italic.woff2") format("woff2"), url("/fonts/BradfordLL-Italic.woff") format("woff");
|
||||
font-weight: normal;
|
||||
font-style: italic;
|
||||
font-display: swap;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Necto Mono";
|
||||
src: url("/fonts/Necto-Mono.woff2") format("woff2"), url("/fonts/Necto-Mono.woff") format("woff");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Debrovnik Hill Italic";
|
||||
src: url("/fonts/Debrovnik Hill Italic.ttf") format("truetype");
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Debrovnik Hill Reguler";
|
||||
src: url("/fonts/Debrovnik Hill Reguler.ttf") format("truetype");
|
||||
}
|
||||
#mkd-login-container,
|
||||
.mkd-form-signup-container {
|
||||
width: 412px;
|
||||
margin: 10vh auto;
|
||||
background-color: #f3f3f3;
|
||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
|
||||
transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
|
||||
}
|
||||
#mkd-login-container form,
|
||||
.mkd-form-signup-container form {
|
||||
width: 100%;
|
||||
max-width: 410px;
|
||||
padding: 15px;
|
||||
margin: auto;
|
||||
}
|
||||
#mkd-login-container .form-control,
|
||||
.mkd-form-signup-container .form-control {
|
||||
position: relative;
|
||||
box-sizing: border-box;
|
||||
height: auto;
|
||||
padding: 10px;
|
||||
font-size: 16px;
|
||||
}
|
||||
#mkd-login-container .form-control:focus,
|
||||
.mkd-form-signup-container .form-control:focus {
|
||||
z-index: 2;
|
||||
}
|
||||
#mkd-login-container .mkd-login-form-container input[type="email"],
|
||||
.mkd-form-signup-container .mkd-login-form-container input[type="email"] {
|
||||
margin-bottom: -1px;
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
#mkd-login-container .mkd-login-form-container input[type="password"],
|
||||
.mkd-form-signup-container .mkd-login-form-container input[type="password"] {
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0;
|
||||
}
|
||||
#mkd-login-container .social-login,
|
||||
.mkd-form-signup-container .social-login {
|
||||
width: 390px;
|
||||
margin: 0 auto;
|
||||
margin-bottom: 14px;
|
||||
}
|
||||
#mkd-login-container .social-btn,
|
||||
.mkd-form-signup-container .social-btn {
|
||||
font-weight: 100;
|
||||
color: white;
|
||||
width: 49%;
|
||||
display: inline;
|
||||
font-size: 0.9rem;
|
||||
margin: 0 2px;
|
||||
padding-top: 5px;
|
||||
}
|
||||
#mkd-login-container a,
|
||||
.mkd-form-signup-container a {
|
||||
display: block;
|
||||
padding-top: 10px;
|
||||
color: black;
|
||||
}
|
||||
|
||||
#mkd-login-container .lines {
|
||||
width: 200px;
|
||||
border: 1px solid red;
|
||||
}
|
||||
|
||||
#mkd-login-container button[type="submit"] {
|
||||
margin-top: 10px;
|
||||
}
|
||||
#mkd-login-container .facebook-btn {
|
||||
background-color: #3c589c;
|
||||
}
|
||||
#mkd-login-container .google-btn {
|
||||
background-color: #df4b3b;
|
||||
}
|
||||
#mkd-login-container input {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 500px) {
|
||||
#mkd-login-container {
|
||||
width: 300px;
|
||||
}
|
||||
#mkd-login-container .social-login {
|
||||
width: 200px;
|
||||
margin: 0 auto;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
#mkd-login-container .social-btn {
|
||||
font-size: 1.3rem;
|
||||
font-weight: 100;
|
||||
color: white;
|
||||
width: 200px;
|
||||
height: 56px;
|
||||
display: block;
|
||||
line-height: 45px;
|
||||
}
|
||||
#mkd-login-container .social-btn:nth-child(1) {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
#mkd-login-container .social-btn span {
|
||||
display: none;
|
||||
}
|
||||
#mkd-login-container .facebook-btn:after {
|
||||
content: "Facebook";
|
||||
}
|
||||
#mkd-login-container .google-btn:after {
|
||||
content: "Google+";
|
||||
}
|
||||
}
|
||||
body {
|
||||
background: #e9ecef;
|
||||
}
|
||||
|
||||
a {
|
||||
/* color: inherit; */
|
||||
text-decoration: none;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
a:hover {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
a:focus {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
padding: 15px 10px;
|
||||
background: #fff;
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
margin-bottom: 40px;
|
||||
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.navbar-btn {
|
||||
box-shadow: none;
|
||||
outline: none !important;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.line {
|
||||
width: 100%;
|
||||
height: 1px;
|
||||
border-bottom: 1px dashed #ddd;
|
||||
margin: 40px 0;
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.copyright {
|
||||
font-size: 12px;
|
||||
display: block;
|
||||
padding: 6px;
|
||||
}
|
||||
|
||||
#sidebar {
|
||||
max-width: 250px;
|
||||
width: 100%;
|
||||
background: #151515;
|
||||
color: #fff;
|
||||
z-index: 2;
|
||||
transition: all 0.3s;
|
||||
-webkit-box-shadow: 2px 0px 4px 0px rgba(0, 0, 0, 0.75);
|
||||
-moz-box-shadow: 2px 0px 4px 0px rgba(0, 0, 0, 0.75);
|
||||
box-shadow: 2px 0px 4px 0px rgba(0, 0, 0, 0.75);
|
||||
position: relative;
|
||||
min-height: 100%;
|
||||
}
|
||||
#sidebar .sidebar-header {
|
||||
padding: 20px;
|
||||
background: #2c5ed6;
|
||||
}
|
||||
#sidebar ul.components {
|
||||
padding: 0px 0px 20px 0px;
|
||||
}
|
||||
#sidebar ul p {
|
||||
color: #fff;
|
||||
padding: 10px;
|
||||
}
|
||||
#sidebar ul li a {
|
||||
padding: 10px;
|
||||
font-size: 1em;
|
||||
display: block;
|
||||
}
|
||||
#sidebar ul li a:hover {
|
||||
color: #151515;
|
||||
background: #fff !important;
|
||||
}
|
||||
#sidebar ul li.active > a {
|
||||
color: #fff;
|
||||
background: #151515;
|
||||
}
|
||||
#sidebar a.active {
|
||||
color: black;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
#sidebar.active {
|
||||
margin-left: -100%;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
a[aria-expanded="true"] {
|
||||
color: #fff;
|
||||
background: #151515;
|
||||
}
|
||||
|
||||
a[data-toggle="collapse"] {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.dropdown-toggle::after {
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: 20px;
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
|
||||
ul ul a {
|
||||
font-size: 0.9em !important;
|
||||
padding-left: 30px !important;
|
||||
background: #151515;
|
||||
}
|
||||
|
||||
#content {
|
||||
width: 100%;
|
||||
padding: 0px;
|
||||
min-height: 100vh;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
|
||||
.btn:focus,
|
||||
.btn:active:focus,
|
||||
.btn.active:focus {
|
||||
outline: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
*:focus:not(a) {
|
||||
outline: none;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
#snackbar {
|
||||
visibility: hidden;
|
||||
/* Hidden by default. Visible on click */
|
||||
min-width: 250px;
|
||||
/* Set a default minimum width */
|
||||
margin-left: -125px;
|
||||
/* Divide value of min-width by 2 */
|
||||
background-color: #333;
|
||||
/* Black background color */
|
||||
color: #fff;
|
||||
/* White text color */
|
||||
text-align: center;
|
||||
/* Centered text */
|
||||
border-radius: 2px;
|
||||
/* Rounded borders */
|
||||
padding: 16px;
|
||||
/* Padding */
|
||||
position: fixed;
|
||||
/* Sit on top of the screen */
|
||||
z-index: 1;
|
||||
/* Add a z-index if needed */
|
||||
left: 50%;
|
||||
/* Center the snackbar */
|
||||
bottom: 30px;
|
||||
/* 30px from the bottom */
|
||||
}
|
||||
#snackbar .show {
|
||||
visibility: visible;
|
||||
/* Show the snackbar */
|
||||
/* Add animation: Take 0.5 seconds to fade in and out the snackbar.
|
||||
However, delay the fade out process for 2.5 seconds */
|
||||
-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
|
||||
animation: fadein 0.5s, fadeout 0.5s 2.5s;
|
||||
}
|
||||
|
||||
@-webkit-keyframes fadein {
|
||||
from {
|
||||
bottom: 0;
|
||||
opacity: 0;
|
||||
}
|
||||
to {
|
||||
bottom: 30px;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
@keyframes fadein {
|
||||
from {
|
||||
bottom: 0;
|
||||
opacity: 0;
|
||||
}
|
||||
to {
|
||||
bottom: 30px;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes fadeout {
|
||||
from {
|
||||
bottom: 30px;
|
||||
opacity: 1;
|
||||
}
|
||||
to {
|
||||
bottom: 0;
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
@keyframes fadeout {
|
||||
from {
|
||||
bottom: 30px;
|
||||
opacity: 1;
|
||||
}
|
||||
to {
|
||||
bottom: 0;
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
#sidebar {
|
||||
margin-left: -250px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#sidebar.active {
|
||||
margin-left: 0;
|
||||
position: relative;
|
||||
}
|
||||
}
|
||||
@media (min-width: 992px) {
|
||||
.modal-xl {
|
||||
max-width: 1200px;
|
||||
}
|
||||
}
|
||||
.mkd-image-container {
|
||||
max-width: 100px;
|
||||
}
|
||||
|
||||
.mkd-upload-btn-wrapper {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
display: inline-block;
|
||||
margin: 100px auto;
|
||||
}
|
||||
.mkd-upload-btn-wrapper input[type="file"] {
|
||||
font-size: 100px;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
opacity: 0;
|
||||
}
|
||||
.mkd-upload-btn-wrapper .mkd-upload-btn {
|
||||
border: 2px solid gray;
|
||||
color: gray;
|
||||
background-color: white;
|
||||
padding: 8px 20px;
|
||||
border-radius: 8px;
|
||||
font-size: 20px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.mkd-upload-form-btn-wrapper {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
display: inline-block;
|
||||
}
|
||||
.mkd-upload-form-btn-wrapper input[type="file"] {
|
||||
font-size: 100px;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
opacity: 0;
|
||||
}
|
||||
/* .mkd-upload-form-btn-wrapper .mkd-upload-btn {
|
||||
border: 2px solid gray;
|
||||
color: gray;
|
||||
background-color: white;
|
||||
padding: 4px 10px;
|
||||
border-radius: 8px;
|
||||
font-size: 10px;
|
||||
font-weight: bold; } */
|
||||
|
||||
#mkd-media-upload-container,
|
||||
#mkd-media-crop-container {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.mkd-media-panel-2,
|
||||
.mkd-media-panel-3 {
|
||||
display: none;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
#mkd-crop-upload-container-wrapper {
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
#mkd-media-gallery-wrapper img {
|
||||
-webkit-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.75);
|
||||
-moz-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.75);
|
||||
box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.75);
|
||||
}
|
||||
|
||||
.mkd-gallery-image-image:hover {
|
||||
outline: 5px dotted black;
|
||||
}
|
||||
|
||||
.mkd-gallery-image-image.active {
|
||||
outline: 5px solid black;
|
||||
}
|
||||
|
||||
.mkd-choose-image {
|
||||
display: inline-block;
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
.form-group img {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.croppie-container {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
.croppie-container .cr-image {
|
||||
z-index: -1;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
transform-origin: 0 0;
|
||||
max-height: none;
|
||||
max-width: none;
|
||||
-webkit-transform: translateZ(0);
|
||||
-moz-transform: translateZ(0);
|
||||
-ms-transform: translateZ(0);
|
||||
transform: translateZ(0);
|
||||
}
|
||||
.croppie-container .cr-boundary {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
margin: 0 auto;
|
||||
z-index: 1;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
.croppie-container .cr-viewport {
|
||||
position: absolute;
|
||||
border: 2px solid #fff;
|
||||
margin: auto;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
left: 0;
|
||||
box-shadow: 0 0 2000px 2000px rgba(0, 0, 0, 0.5);
|
||||
z-index: 0;
|
||||
-webkit-transform: translateZ(0);
|
||||
-moz-transform: translateZ(0);
|
||||
-ms-transform: translateZ(0);
|
||||
transform: translateZ(0);
|
||||
}
|
||||
.croppie-container .cr-resizer {
|
||||
position: absolute;
|
||||
border: 2px solid #fff;
|
||||
margin: auto;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
left: 0;
|
||||
box-shadow: 0 0 2000px 2000px rgba(0, 0, 0, 0.5);
|
||||
z-index: 0;
|
||||
z-index: 2;
|
||||
box-shadow: none;
|
||||
pointer-events: none;
|
||||
}
|
||||
.croppie-container .cr-resizer-vertical {
|
||||
position: absolute;
|
||||
pointer-events: all;
|
||||
bottom: -5px;
|
||||
cursor: row-resize;
|
||||
width: 100%;
|
||||
height: 10px;
|
||||
}
|
||||
.croppie-container .cr-resizer-vertical::after {
|
||||
display: block;
|
||||
position: absolute;
|
||||
box-sizing: border-box;
|
||||
border: 1px solid black;
|
||||
background: #fff;
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
content: "";
|
||||
left: 50%;
|
||||
margin-left: -5px;
|
||||
}
|
||||
.croppie-container .cr-resizer-horisontal {
|
||||
position: absolute;
|
||||
pointer-events: all;
|
||||
right: -5px;
|
||||
cursor: col-resize;
|
||||
width: 10px;
|
||||
height: 100%;
|
||||
}
|
||||
.croppie-container .cr-resizer-horisontal::after {
|
||||
display: block;
|
||||
position: absolute;
|
||||
box-sizing: border-box;
|
||||
border: 1px solid black;
|
||||
background: #fff;
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
content: "";
|
||||
top: 50%;
|
||||
margin-top: -5px;
|
||||
}
|
||||
.croppie-container .cr-original-image {
|
||||
display: none;
|
||||
}
|
||||
.croppie-container .cr-vp-circle {
|
||||
border-radius: 50%;
|
||||
}
|
||||
.croppie-container .cr-overlay {
|
||||
z-index: 1;
|
||||
position: absolute;
|
||||
cursor: move;
|
||||
touch-action: none;
|
||||
-webkit-transform: translateZ(0);
|
||||
-moz-transform: translateZ(0);
|
||||
-ms-transform: translateZ(0);
|
||||
transform: translateZ(0);
|
||||
}
|
||||
.croppie-container .cr-slider-wrap {
|
||||
width: 75%;
|
||||
margin: 15px auto;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.croppie-result {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
.croppie-result img {
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.cr-slider {
|
||||
-webkit-appearance: none;
|
||||
width: 300px;
|
||||
max-width: 100%;
|
||||
padding-top: 8px;
|
||||
padding-bottom: 8px;
|
||||
background-color: transparent;
|
||||
}
|
||||
.cr-slider::-webkit-slider-runnable-track {
|
||||
width: 100%;
|
||||
height: 3px;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
border: 0;
|
||||
border-radius: 3px;
|
||||
}
|
||||
.cr-slider::-webkit-slider-thumb {
|
||||
-webkit-appearance: none;
|
||||
border: none;
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
border-radius: 50%;
|
||||
background: #ddd;
|
||||
margin-top: -6px;
|
||||
}
|
||||
.cr-slider:focus {
|
||||
outline: none;
|
||||
}
|
||||
.cr-slider:focus::-ms-fill-lower {
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
.cr-slider:focus::-ms-fill-upper {
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
.cr-slider::-moz-range-track {
|
||||
width: 100%;
|
||||
height: 3px;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
border: 0;
|
||||
border-radius: 3px;
|
||||
}
|
||||
.cr-slider::-moz-range-thumb {
|
||||
border: none;
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
border-radius: 50%;
|
||||
background: #ddd;
|
||||
margin-top: -6px;
|
||||
}
|
||||
.cr-slider:-moz-focusring {
|
||||
outline: 1px solid white;
|
||||
outline-offset: -1px;
|
||||
}
|
||||
.cr-slider::-ms-track {
|
||||
width: 100%;
|
||||
height: 5px;
|
||||
background: transparent;
|
||||
border-color: transparent;
|
||||
border-width: 6px 0;
|
||||
color: transparent;
|
||||
}
|
||||
.cr-slider::-ms-fill-lower {
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
border-radius: 10px;
|
||||
}
|
||||
.cr-slider::-ms-fill-upper {
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
border-radius: 10px;
|
||||
}
|
||||
.cr-slider::-ms-thumb {
|
||||
border: none;
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
border-radius: 50%;
|
||||
background: #ddd;
|
||||
margin-top: 1px;
|
||||
}
|
||||
|
||||
.cr-rotate-controls {
|
||||
position: absolute;
|
||||
bottom: 5px;
|
||||
left: 5px;
|
||||
z-index: 1;
|
||||
}
|
||||
.cr-rotate-controls button {
|
||||
border: 0;
|
||||
background: none;
|
||||
}
|
||||
.cr-rotate-controls i:before {
|
||||
display: inline-block;
|
||||
font-style: normal;
|
||||
font-weight: 900;
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
.cr-rotate-l i:before {
|
||||
content: "↺";
|
||||
}
|
||||
|
||||
.cr-rotate-r i:before {
|
||||
content: "↻";
|
||||
}
|
||||
|
||||
#sidebar ul.collapse li a {
|
||||
background-color: #3e3f40;
|
||||
}
|
||||
|
||||
.table .thead-light th:first-child,
|
||||
table .tbody-light td:first-child {
|
||||
border-left: 1px solid #dee2e6;
|
||||
}
|
||||
|
||||
.table .thead-light th:last-child,
|
||||
table .tbody-light td:last-child {
|
||||
border-right: 1px solid #dee2e6;
|
||||
}
|
||||
|
||||
.table .tbody-light tr:last-child {
|
||||
border-bottom: 1px solid #dee2e6;
|
||||
}
|
||||
|
||||
.breadcrumb-link {
|
||||
color: #2c549c;
|
||||
}
|
||||
|
||||
.navigation-row {
|
||||
background-color: white;
|
||||
padding: 20px 20px 20px 10px;
|
||||
}
|
||||
|
||||
.text-underline {
|
||||
text-decoration: underline !important;
|
||||
}
|
||||
|
||||
.btn-light {
|
||||
background-color: white;
|
||||
border: none;
|
||||
}
|
||||
.form-container-auth {
|
||||
max-width: 30rem;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.auth-wrapper {
|
||||
margin-top: 10vh;
|
||||
}
|
||||
|
||||
.hamburger {
|
||||
position: absolute;
|
||||
right: -48px;
|
||||
top: 0px;
|
||||
}
|
||||
|
||||
.list-group-item-action:hover,
|
||||
.list-group-item-action:active,
|
||||
.custom-list-item.active.collapsed {
|
||||
color: #151515;
|
||||
background-color: white;
|
||||
}
|
||||
.custom-list-item.active {
|
||||
background-color: transparent;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.custom-list-item {
|
||||
height: 50px;
|
||||
background-color: transparent;
|
||||
color: white;
|
||||
padding: 0 10px;
|
||||
border-radius: 0;
|
||||
}
|
||||
#sidebar .card {
|
||||
border: none;
|
||||
background-color: transparent;
|
||||
}
|
||||
#sidebar .card-header {
|
||||
border-bottom: none;
|
||||
}
|
||||
#sidebar .card-header:first-child {
|
||||
border-radius: 0;
|
||||
}
|
||||
.dropdownMenuItem {
|
||||
background-color: rgba(0, 0, 0, 0.4);
|
||||
}
|
||||
|
||||
.menu-item {
|
||||
color: white;
|
||||
}
|
||||
.menu-active {
|
||||
background-color: white;
|
||||
color: black;
|
||||
}
|
||||
|
||||
#body {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#modal-image-slot {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#bulkDeleteButton,
|
||||
#bulkEditButton {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* required field red asterisk */
|
||||
.form-group.required .control-label:after {
|
||||
color: red;
|
||||
content: "*";
|
||||
margin-left: 5px;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.main-body {
|
||||
height: 100%;
|
||||
min-height: 100vh;
|
||||
flex-wrap: nowrap;
|
||||
overflow: auto;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.google-button,
|
||||
.facebook-button {
|
||||
height: 50px;
|
||||
background-color: white;
|
||||
border-radius: 10px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.facebook-button {
|
||||
background-color: #3b5998;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.flash-response {
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
}
|
||||
.hide-answer-select,
|
||||
.answer-value,
|
||||
.answer-image {
|
||||
display: none;
|
||||
}
|
||||
.hide-answer-select.show,
|
||||
.answer-value.show,
|
||||
.answer-image.show {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.order-arrows {
|
||||
width: 20px;
|
||||
display: inline-block;
|
||||
margin-bottom: -3px;
|
||||
}
|
||||
|
||||
.weight-active-score.has-value {
|
||||
outline: blue 1px solid;
|
||||
}
|
||||
.custom-picker {
|
||||
border: 1px solid #ced4da;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.custom-flash-message {
|
||||
color: black;
|
||||
width: 80%;
|
||||
max-width: 700px;
|
||||
padding: 16px;
|
||||
border-radius: 4px;
|
||||
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
|
||||
position: fixed;
|
||||
top: 20px;
|
||||
right: 20px;
|
||||
background-color: white;
|
||||
transform: translateX(1000%);
|
||||
transition: 300ms all cubic-bezier(0.165, 0.84, 0.44, 1);
|
||||
}
|
||||
.custom-flash-message.show {
|
||||
z-index: 1051;
|
||||
transform: translateX(0%);
|
||||
transition: 300ms all cubic-bezier(0.165, 0.84, 0.44, 1);
|
||||
}
|
||||
.custom-flash-message.show.success {
|
||||
color: green;
|
||||
}
|
||||
.custom-flash-message.show.error {
|
||||
color: red;
|
||||
}
|
||||
@@ -0,0 +1,126 @@
|
||||
@media only screen and (max-height: 580px) {
|
||||
#page1 .secondRow {
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: 992px) {
|
||||
#page1 .main-image-container {
|
||||
display: none;
|
||||
}
|
||||
#page1 .columns {
|
||||
width: 100%;
|
||||
margin-left: 0;
|
||||
padding: 0 8px;
|
||||
}
|
||||
#page1 .firstRow {
|
||||
height: 100px;
|
||||
}
|
||||
#page1 .secondRow {
|
||||
height: auto;
|
||||
}
|
||||
#page1 .secondRow .heading {
|
||||
font-size: 40px;
|
||||
margin-bottom: 48px;
|
||||
}
|
||||
#page1 .secondRow .para {
|
||||
margin-bottom: 56px;
|
||||
font-size: 15px;
|
||||
}
|
||||
#page1 .secondRow .beginButton {
|
||||
font-size: 11px;
|
||||
}
|
||||
#page2 h4 {
|
||||
font-size: 24px;
|
||||
}
|
||||
#page2 h1 {
|
||||
font-size: 36px;
|
||||
}
|
||||
.progressBar .progressColumns p {
|
||||
font-size: 10px;
|
||||
}
|
||||
#page3 .questionRow h1 {
|
||||
font-size: 36px;
|
||||
line-height: 56px;
|
||||
padding: 0 8px;
|
||||
}
|
||||
.answerInner.typeText input,
|
||||
.answerInner.typeNum input {
|
||||
font-size: 16px;
|
||||
}
|
||||
#page4 .createdByDiv,
|
||||
.createdByDiv {
|
||||
font-size: 10px;
|
||||
}
|
||||
.noteRow {
|
||||
margin-bottom: 10vh;
|
||||
}
|
||||
#page3 .questionRow.mtb {
|
||||
padding: 24px 0;
|
||||
}
|
||||
#page3 .noteRow {
|
||||
flex-direction: column;
|
||||
margin-bottom: 10vh;
|
||||
}
|
||||
#page3 .noteRow .noteTitle {
|
||||
border: 1px solid #101010 !important;
|
||||
border-top: none !important;
|
||||
}
|
||||
#page3 .noteRow .noteTitle h4 {
|
||||
font-size: 12px;
|
||||
margin: 8px 0;
|
||||
}
|
||||
#page3 .noteRow .noteDesc {
|
||||
border: 1px solid #101010 !important;
|
||||
border-top: none !important;
|
||||
}
|
||||
#page3 .noteRow .noteDesc p {
|
||||
margin: 8px 0;
|
||||
font-size: 13px;
|
||||
text-align: center;
|
||||
}
|
||||
.multiBtns {
|
||||
font-size: 12px;
|
||||
padding: 14px 10px;
|
||||
}
|
||||
#page3 .noteRow.image-below {
|
||||
margin-bottom: 5vh !important;
|
||||
}
|
||||
#page3 .questionRow.mtb.no-note {
|
||||
margin-bottom: 8vh !important;
|
||||
}
|
||||
#page3 .questionRow.mtb.no-note.no-image {
|
||||
margin-bottom: 16vh !important;
|
||||
}
|
||||
#page3 .answerRow {
|
||||
margin-top: 24px;
|
||||
}
|
||||
#page4 .headerRow,
|
||||
.headerRow {
|
||||
height: 50px;
|
||||
}
|
||||
.sliderDiv {
|
||||
margin: 32px auto 8px auto;
|
||||
width: 90%;
|
||||
}
|
||||
#typeGeo .answerInner input {
|
||||
font-size: 16px;
|
||||
}
|
||||
#weatherApi .header {
|
||||
text-align: center;
|
||||
}
|
||||
#page5 .responseRow .responseInner .responseBody p {
|
||||
padding: 0 8px;
|
||||
}
|
||||
.control-arrows img {
|
||||
width: 15px;
|
||||
}
|
||||
.sliderRanges .ranges {
|
||||
font-size: 12px;
|
||||
}
|
||||
#page5 .responseRow .responseInner .responseHead h1 {
|
||||
font-size: 36px;
|
||||
}
|
||||
#page5 .responseRow .responseInner .responseBody p {
|
||||
font-size: 13px;
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 110 KiB |
|
After Width: | Height: | Size: 43 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 34 KiB |
|
After Width: | Height: | Size: 35 KiB |
|
After Width: | Height: | Size: 36 KiB |
|
After Width: | Height: | Size: 30 KiB |
|
After Width: | Height: | Size: 33 KiB |
|
After Width: | Height: | Size: 21 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 6.2 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 17 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 332.45 334.44"><defs><style>.cls-1{fill:none;stroke:#ef6145;stroke-miterlimit:10;}</style></defs><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><image width="1000" height="1006" transform="translate(0.5 0.5) scale(0.33)" xlink:href="../red%20blotchy.png"/><rect class="cls-1" x="0.5" y="0.5" width="331.45" height="333.44"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 461 B |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 332.45 334.44"><defs><style>.cls-1{fill:none;stroke:#ef6145;stroke-miterlimit:10;}</style></defs><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><rect class="cls-1" x="0.5" y="0.5" width="331.45" height="333.44"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 306 B |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 266.4 266.4"><defs><style>.cls-1{fill:none;stroke:#000;stroke-miterlimit:10;stroke-width:2px;}</style></defs><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><rect class="cls-1" x="1" y="1" width="264.4" height="264.4"/><path class="cls-1" d="M102.81,189.73c1.94-1.81,13.29-12.81,13.31-30.59,0-12.76-8.94-18.54-14-31.26-4-10.19-6.56-26.36,2.66-51.21"/><path class="cls-1" d="M130.13,189.73c1.93-1.81,13.29-12.81,13.3-30.59,0-12.76-8.93-18.54-14-31.26-4-10.19-6.56-26.36,2.66-51.21"/><path class="cls-1" d="M154.59,189.73c1.93-1.81,13.29-12.81,13.3-30.59,0-12.76-8.93-18.54-14-31.26-4-10.19-6.56-26.36,2.66-51.21"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 706 B |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 266.4 266.4"><defs><style>.cls-1{fill:none;stroke:#000;stroke-miterlimit:10;stroke-width:2px;}</style></defs><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><rect class="cls-1" x="1" y="1" width="264.4" height="264.4"/><path d="M265.45,212.76H1.05V147.12c40.48,0,48.17-41.29,87.63-41.29s51.22,41.29,89.55,41.29,46.33-41.59,87.22-41.59Z"/><rect x="1.05" y="176.98" width="264.4" height="88.42"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 487 B |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 266.4 266.4"><defs><style>.cls-1{fill:none;stroke:#000;stroke-miterlimit:10;stroke-width:2px;}</style></defs><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><rect class="cls-1" x="1" y="1" width="264.4" height="264.4"/><path d="M265.45,108.23H1.05V42.58C41.53,42.58,49.22,1.3,88.68,1.3s51.22,41.28,89.55,41.28S224.56,1,265.45,1Z"/><rect x="1.05" y="108.23" width="264.4" height="157.18"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 481 B |
|
After Width: | Height: | Size: 6.2 KiB |
|
After Width: | Height: | Size: 6.2 KiB |
|
After Width: | Height: | Size: 5.7 KiB |
|
After Width: | Height: | Size: 6.5 KiB |
|
After Width: | Height: | Size: 6.2 KiB |
|
After Width: | Height: | Size: 5.0 KiB |
|
After Width: | Height: | Size: 5.5 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 248.97 256.76"><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><path d="M249,256.76H0V0H249ZM2.85,253.91H246.12V2.85H2.85Z"/><ellipse cx="100.85" cy="107.04" rx="38.55" ry="39.77"/><ellipse cx="193.83" cy="193.59" rx="21.54" ry="22.22"/><ellipse cx="189.09" cy="120.52" rx="4.74" ry="4.89"/><ellipse cx="119.91" cy="171.67" rx="5.96" ry="6.15"/><ellipse cx="53.53" cy="199.75" rx="21.25" ry="21.92"/><ellipse cx="185.04" cy="51.18" rx="15.59" ry="16.08"/><ellipse cx="76.76" cy="38.9" rx="3.68" ry="3.8"/><ellipse cx="37.5" cy="59.22" rx="7.79" ry="8.04"/><ellipse cx="126.86" cy="55.64" rx="3.47" ry="3.58"/><ellipse cx="218.57" cy="93.21" rx="10.41" ry="10.73"/><ellipse cx="166.61" cy="152.65" rx="5.67" ry="5.85"/><ellipse cx="49.41" cy="148.41" rx="4.12" ry="4.25"/><ellipse cx="134.8" cy="209.9" rx="11.41" ry="11.77"/><ellipse cx="93.48" cy="218.74" rx="2.83" ry="2.92"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 971 B |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 248.97 256.76"><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><path d="M249,256.76H0V0H249ZM2.85,253.91H246.12V2.85H2.85Z"/><ellipse cx="77.27" cy="207.19" rx="8.6" ry="8.87"/><ellipse cx="170.05" cy="104.47" rx="23.18" ry="23.92"/><ellipse cx="48.62" cy="55.14" rx="8.21" ry="8.47"/><path d="M48.62,64.56a9.42,9.42,0,1,1,9.16-9.42A9.31,9.31,0,0,1,48.62,64.56Zm0-16.94a7.52,7.52,0,1,0,7.26,7.52A7.4,7.4,0,0,0,48.62,47.62Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 518 B |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 248.97 256.76"><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><path d="M249,256.76H0V0H249ZM2.85,253.91H246.12V2.85H2.85Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 218 B |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 191.61 263.88"><defs><style>.cls-1{fill:none;stroke:#000;stroke-miterlimit:10;stroke-width:0.5px;}</style></defs><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><line class="cls-1" x1="0.02" y1="0.25" x2="191.58" y2="0.25"/><line class="cls-1" x1="155.18" y1="263.63" x2="37.05" y2="263.63"/><polyline class="cls-1" points="154.94 263.63 155.52 259.43 191.36 0.25"/><line class="cls-1" x1="0.25" y1="0.25" x2="37.33" y2="263.63"/><path d="M155.18,263.63H37.05l-1.68-14c11.14,0,2.79-10,35.14-10s45.89,8,68.28,8c18.74.11,19.43-9.35,19.43-9.35"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 636 B |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 191.61 263.88"><defs><style>.cls-1{fill:none;stroke:#000;stroke-miterlimit:10;stroke-width:0.5px;}</style></defs><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><line class="cls-1" x1="0.02" y1="0.25" x2="191.58" y2="0.25"/><line class="cls-1" x1="155.18" y1="263.63" x2="37.05" y2="263.63"/><polyline class="cls-1" points="154.94 263.63 155.52 259.43 191.36 0.25"/><line class="cls-1" x1="0.25" y1="0.25" x2="37.33" y2="263.63"/><path d="M155.18,263.63H37.05l-5.78-43.34L18.51,130c11.14.05,14.1-19.32,46.46-19.32s51.43,15.43,73.82,15.43c25.94,0,37.19-14.55,37.19-14.55"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 665 B |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 191.61 263.88"><defs><style>.cls-1{fill:none;stroke:#000;stroke-miterlimit:10;stroke-width:0.5px;}</style></defs><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><line class="cls-1" x1="0.02" y1="0.25" x2="191.58" y2="0.25"/><line class="cls-1" x1="155.18" y1="263.63" x2="37.05" y2="263.63"/><polyline class="cls-1" points="154.94 263.63 155.52 259.43 191.36 0.25"/><line class="cls-1" x1="0.25" y1="0.25" x2="37.33" y2="263.63"/><path d="M155.18,263.63H37.05L5,33.72C16.1,33.8,32.61.25,65,.25S116.4,26.8,138.79,26.8C164.73,26.8,191.36.25,191.36.25"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 644 B |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 829 KiB |
|
After Width: | Height: | Size: 67 KiB |
|
After Width: | Height: | Size: 1.5 MiB |
|
After Width: | Height: | Size: 1.5 MiB |
|
After Width: | Height: | Size: 1.4 MiB |
|
After Width: | Height: | Size: 1.4 MiB |
|
After Width: | Height: | Size: 1.4 MiB |
|
After Width: | Height: | Size: 1.6 MiB |
|
After Width: | Height: | Size: 1.8 MiB |
|
After Width: | Height: | Size: 1.7 MiB |
|
After Width: | Height: | Size: 1.7 MiB |
|
After Width: | Height: | Size: 1.6 MiB |
|
After Width: | Height: | Size: 1.7 MiB |
|
After Width: | Height: | Size: 1.6 MiB |
|
After Width: | Height: | Size: 1.6 MiB |
|
After Width: | Height: | Size: 1.6 MiB |
|
After Width: | Height: | Size: 1.5 MiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 7.5 KiB |
@@ -0,0 +1 @@
|
||||
<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="arrow-right" class="svg-inline--fa fa-arrow-right fa-w-14" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z"></path></svg>
|
||||
|
After Width: | Height: | Size: 495 B |
|
After Width: | Height: | Size: 6.8 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 26 KiB |
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 49 B |
|
After Width: | Height: | Size: 722 KiB |
|
After Width: | Height: | Size: 531 KiB |
|
After Width: | Height: | Size: 956 KiB |
|
After Width: | Height: | Size: 402 KiB |
|
After Width: | Height: | Size: 532 KiB |
@@ -0,0 +1 @@
|
||||
Forbidden Access
|
||||
@@ -0,0 +1 @@
|
||||
Forbidden Access
|
||||
|
After Width: | Height: | Size: 3.0 KiB |