| 1 |
.card_container { |
| 2 |
border-radius: 5px; |
| 3 |
background-color: #FFFFFF; |
| 4 |
padding: 20px; |
| 5 |
max-width: 760px; |
| 6 |
width: 100%; |
| 7 |
margin: 0 auto; |
| 8 |
} |
| 9 |
.card_field { |
| 10 |
width: 100%; |
| 11 |
padding: 12px; |
| 12 |
border: 1px solid #ccc; |
| 13 |
border-radius: 4px; |
| 14 |
box-sizing: border-box; |
| 15 |
margin-top: 6px; |
| 16 |
margin-bottom: 16px; |
| 17 |
resize: vertical; |
| 18 |
height:40px; |
| 19 |
background:white; |
| 20 |
font-size:17px; |
| 21 |
color:#3a3a3a; |
| 22 |
font-family:helvetica, tahoma, calibri, sans-serif; |
| 23 |
} |
| 24 |
.card_field_50 { |
| 25 |
width: 50%; |
| 26 |
padding: 12px; |
| 27 |
border: 1px solid #ccc; |
| 28 |
border-radius: 4px; |
| 29 |
box-sizing: border-box; |
| 30 |
margin-top: 6px; |
| 31 |
margin-bottom: 16px; |
| 32 |
resize: vertical; |
| 33 |
height:40px; |
| 34 |
background:white; |
| 35 |
font-size:17px; |
| 36 |
color:#3a3a3a; |
| 37 |
font-family:helvetica, tahoma, calibri, sans-serif; |
| 38 |
} |
| 39 |
.card_field_75 { |
| 40 |
width: 75%; |
| 41 |
padding: 12px; |
| 42 |
border: 1px solid #ccc; |
| 43 |
border-radius: 4px; |
| 44 |
box-sizing: border-box; |
| 45 |
margin-top: 6px; |
| 46 |
margin-bottom: 16px; |
| 47 |
resize: vertical; |
| 48 |
height:40px; |
| 49 |
background:white; |
| 50 |
font-size:17px; |
| 51 |
color:#3a3a3a; |
| 52 |
font-family:helvetica, tahoma, calibri, sans-serif; |
| 53 |
} |
| 54 |
.row { |
| 55 |
display: -ms-flexbox; /* IE10 */ |
| 56 |
display: flex; |
| 57 |
-ms-flex-wrap: wrap; /* IE10 */ |
| 58 |
flex-wrap: wrap; |
| 59 |
margin: 0 -16px; |
| 60 |
} |
| 61 |
.col-25 { |
| 62 |
-ms-flex: 25%; /* IE10 */ |
| 63 |
flex: 25%; |
| 64 |
} |
| 65 |
.col-50 { |
| 66 |
-ms-flex: 50%; /* IE10 */ |
| 67 |
flex: 50%; |
| 68 |
} |
| 69 |
/* |
| 70 |
input[type=text], select, textarea { |
| 71 |
width: 100%; |
| 72 |
padding: 12px; |
| 73 |
border: 1px solid #ccc; |
| 74 |
border-radius: 4px; |
| 75 |
box-sizing: border-box; |
| 76 |
margin-top: 6px; |
| 77 |
margin-bottom: 16px; |
| 78 |
resize: vertical; |
| 79 |
height:40px; |
| 80 |
background:white; |
| 81 |
font-size:17px; |
| 82 |
color:#3a3a3a; |
| 83 |
font-family:helvetica, tahoma, calibri, sans-serif; |
| 84 |
}*/ |
| 85 |
.message_container { |
| 86 |
border-radius: 5px; |
| 87 |
background:#FFFFFF; |
| 88 |
font-size:13px; |
| 89 |
font-family:monospace; |
| 90 |
padding: 20px; |
| 91 |
} |
| 92 |
#loading { |
| 93 |
width: 100%; |
| 94 |
height: 100%; |
| 95 |
top: 0; |
| 96 |
left: 0; |
| 97 |
position: fixed; |
| 98 |
display: block; |
| 99 |
opacity: 0.7; |
| 100 |
background-color: #fff; |
| 101 |
z-index: 99; |
| 102 |
text-align: center; |
| 103 |
} |
| 104 |
#loading-image { |
| 105 |
position: absolute; |
| 106 |
z-index: 15; |
| 107 |
top: 50%; |
| 108 |
left: 50%; |
| 109 |
margin: -100px 0 0 -150px; |
| 110 |
} |
| 111 |
.spinner { |
| 112 |
position: fixed; |
| 113 |
top: 50%; |
| 114 |
left: 50%; |
| 115 |
margin-left: -50px; /* half width of the spinner gif */ |
| 116 |
margin-top: -50px; /* half height of the spinner gif */ |
| 117 |
text-align:center; |
| 118 |
z-index:1234; |
| 119 |
overflow: auto; |
| 120 |
width: 100px; /* width of the spinner gif */ |
| 121 |
height: 102px; /* height of the spinner gif +2px to fix IE8 issue */ |
| 122 |
} |
| 123 |
.card_selection { |
| 124 |
width: 100%; |
| 125 |
margin-bottom: 6px; |
| 126 |
} |
| 127 |
.card_last_digits { |
| 128 |
padding: 20px; |
| 129 |
} |
| 130 |
|