body {
|
|
font-family: 'IBM Plex Sans', sans-serif;
|
|
margin: 0px;
|
|
}
|
|
|
|
h1 {
|
|
margin: 20px 0px 10px 0px;
|
|
}
|
|
|
|
h2 {
|
|
margin: 15px 0px 15px 0px;
|
|
}
|
|
|
|
h3 {
|
|
margin: 15px 0px 7px 0px;
|
|
}
|
|
|
|
h4 {
|
|
margin: 20px 0px 10px 0px;
|
|
}
|
|
|
|
.center {
|
|
min-height: 80vh; /* will cover the 100% of viewport */
|
|
max-width: 1100px;
|
|
margin: 30px auto 0 auto;
|
|
}
|
|
|
|
.align-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.auto-margin {
|
|
position: relative;
|
|
margin: 0 auto;
|
|
max-width: 500px;
|
|
}
|
|
|
|
|
|
.green {
|
|
color: #0F7F12;
|
|
}
|
|
|
|
.center-in-div {
|
|
margin: 0;
|
|
position: absolute;
|
|
left: 50%;
|
|
-ms-transform: translate(-50%, -0%);
|
|
transform: translate(-50%, -0%);
|
|
}
|
|
|
|
.card {
|
|
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
|
|
transition: 0.3s;
|
|
border-radius: 15px;
|
|
padding: 15px;
|
|
max-width: 600px;
|
|
}
|
|
|
|
.card:hover {
|
|
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
|
|
}
|
|
|
|
textarea {
|
|
width: 100%;
|
|
margin-top: 10px;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.container {
|
|
padding: 2px 16px;
|
|
}
|
|
|
|
#qr {
|
|
width: 100%;
|
|
}
|
|
|
|
#preview {
|
|
width: 100%;
|
|
border-radius: 2px;
|
|
border:#222 solid 1px;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
#post-verify-section {
|
|
width: 100%;
|
|
}
|
|
|
|
.qr-btn {
|
|
background-color: #3654DD;
|
|
padding: 10px 20px;
|
|
font-size: 25px;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.select {
|
|
display:flex;
|
|
flex-direction: column;
|
|
position:relative;
|
|
float:left;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
.camera-btn {
|
|
background-color: #3654DD;
|
|
padding: 10px 20px;
|
|
font-size: 18px;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.option {
|
|
padding:0 30px 0 10px;
|
|
min-height:41px;
|
|
font-size: 18px;
|
|
display:flex;
|
|
align-items:center;
|
|
background:#273c9b;
|
|
border-top:#222 solid 1px;
|
|
position:absolute;
|
|
top:0;
|
|
width: 100%;
|
|
pointer-events:none;
|
|
order:2;
|
|
z-index:1;
|
|
transition:background .4s ease-in-out;
|
|
box-sizing:border-box;
|
|
overflow:hidden;
|
|
white-space:nowrap;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.option:hover {
|
|
background:#3654DD;
|
|
border: none;
|
|
border-radius: 0px;
|
|
}
|
|
|
|
.select:focus .option {
|
|
position:relative;
|
|
pointer-events:all;
|
|
border: none;
|
|
border-radius: 0px;
|
|
}
|
|
|
|
input {
|
|
opacity:0;
|
|
position:absolute;
|
|
left:-99999px;
|
|
}
|
|
|
|
input:checked + label {
|
|
order: 1;
|
|
z-index:2;
|
|
background:#3654DD;
|
|
border-top:none;
|
|
position:relative;
|
|
}
|
|
|
|
input:checked + label:after {
|
|
content:'';
|
|
width: 0;
|
|
height: 0;
|
|
border-left: 5px solid transparent;
|
|
border-right: 5px solid transparent;
|
|
border-top: 5px solid white;
|
|
position:absolute;
|
|
right:10px;
|
|
top:calc(50% - 2.5px);
|
|
pointer-events:none;
|
|
z-index:3;
|
|
}
|
|
|
|
input:checked + label:before {
|
|
position:absolute;
|
|
right:0;
|
|
height: 40px;
|
|
width: 40px;
|
|
content: '';
|
|
background:#3654DD;
|
|
}
|
|
|
|
|
|
/* Responsive layout - makes a one column layout instead of a two-column layout */
|
|
@media (max-width: 1000px) {
|
|
.center {
|
|
width: 100%;
|
|
margin: 30px 0px 0px 0px;
|
|
padding: 0px 10px 0px 10px;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
.full-div {
|
|
flex-direction: column;
|
|
}
|
|
.xs-hidden {
|
|
display: none;
|
|
}
|
|
}
|