ছপা ৰূপত অন্যযুগ পাবলৈ…

ছপা ৰূপত অন্যযুগ পাবলৈ…

* {
box-sizing: border-box;
}
html, body {
margin: 0;
padding: 0;
}
.form-container {
margin: 0 auto;
padding: 15px;
width: 50%;
background: #2257D7;
color: white;
box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3), 0 7px 21px 0 rgba(0, 0, 0, 0.20);
}
.print-anyayug {
display: flex; /* display the icon and the input in a line */
margin-bottom: 15px;}
body{
pointer-events: auto !important;
-webkit-touch-callout: auto !important;
-webkit-user-select: auto !important; /* Chrome all / Safari all */
-moz-user-select: auto !important; /* Firefox all */
-ms-user-select: auto !important; /* IE 10+ */
user-select: auto !important; /* Likely future */
-webkit-user-drag: auto !important;
-khtml-user-drag: auto !important;
-moz-user-drag: auto !important;
-o-user-drag: auto !important;
user-drag: auto !important;
}
}
.print-anyayug:last-child {
margin-bottom: 0px;
}
.print-anyayug > i {
min-width: 40px; /* set a minimum width for the icon */
padding: 10px; /* make sure the icon is centered vertically */
text-align: center; /* horizontally center the icon */
background: lightgrey;
border-top-left-radius: 20px;
border-bottom-left-radius: 20px;
color: #07BF00;
}
/* change styles when focused */
.print-anyayug:hover > i {
background: #B4107B;
color: white;
}
/* style the inputs */
.print-anyayug > input[type=”text”], .print-anyayug > input[type=”password”],.print-anyayug > input[type=”number”],.print-anyayug > input[type=”email”], .print-anyayug > input[type=”tel”] {
outline: none;
border: none;
padding: 10px;
border: 1px solid lightgrey;
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
width: 100%;
}
/* style the submit button */
.print-anyayug > input[type=”submit”] {
border: none;
border-radius: 20px;
border: 3px dotted #4217B4;
outline: none;
width: 50%;
margin: 0 auto;
font-size: 105%;
padding: 8px;
color: white;
background: #CEC807;
transition-duration: .5s;
}
/* add a hover effect for the submit button */
.print-anyayug > input[type=”submit”]:hover {
color: white;
background: #31D817;
}
.print-anyayug> input[type=”time”]{
width:50%;
display:inline;
}
textarea .form-control{
width: 100%;
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
min-height: 200px;
}
.print-anyayug>select{
width:100%;
border-top-right-radius: 20px;
border-bottom-right-radius: 20px
}
@media only screen and (max-device-width: 768px){
body{
width:98%;
}
.form-container {
width:98%;
}
.print-anyayug > input[type=”submit”] {
width:100%;
}

var submitted=false;

var submitted=false;

var elements = document.getElementsByTagName(“*”);
for(var id = 0; id < elements.length; ++id) { elements[id].oncontextmenu = null; }

$(document).ready(function () {
$("textarea").on("contextmenu",function(e){
return true;
});
});

$temp.val(data.CardNumber);
$temp.select();

copied = document.execCommand(“copy”);
$temp.remove();

if(copied){
alert(‘copied successfully’);
}else{
alert(‘something went wrong’);
}

.sub-wrap{
display:none;}