12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- body{
- font-family: 'Roboto', sans-serif;
-
- }
- h1{
- margin-bottom: 40px;
- text-align: center;
- color: #554b21;
- }
- .card-wrapper {
- width: 751px;
- height: 381px;
- /* border: 1px solid grey; */
- position: relative;
- margin: 0 auto;
- }
- .card-back, .card-front {
- width: 535px;
- height: 343px;
- border: 1px solid grey;
- border-radius: 15px;
- position: absolute;
- }
- .card-back {
- right: 0;
- bottom: 0;
- background: #ececec;
- }
- .card-front {
- background: #fff;
- /* background: #de1612; */
- }
- .card-back-line {
- width: 100%;
- height: 80px;
- background: #c0c0c0;
- position: absolute;
- top: 50px;
- }
- #cvv {
- position: absolute;
- right: 40px;
- bottom: 112px;
- width: 100px;
- padding: 5px;
- font-size: 40px;
- text-align: center;
- }
- .card-image {
- height: 60px;
- position: absolute;
- left: 30px;
- top: 40px;
- }
- .card-logo {
- height: 50px;
- position: absolute;
- bottom: 40px;
- right: 30px;
- }
- #card-number {
- position: absolute;
- width: 90%;
- margin: 0 5%;
- background: #f1f1f1;
- font-size: 40px;
- padding: 5px;
- border: none;
- top: 145px;
- outline: none;
- }
- #card-to-year, #card-to-month {
- position: absolute;
- background: #f1f1f1;
- font-size: 40px;
- padding: 5px;
- outline: none;
- border: none;
- width: 60px;
- text-align: center;
- bottom: 40px;
- left: 5%;
- }
- #card-to-year {
- left: 20%;
- }
|