-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
115 lines (94 loc) · 1.86 KB
/
index.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/* -- Utility Classes -- */
.hidden {
display: none !important;
}
/* -- General Styles -- */
body {
margin: 20px;
font-family: Times, "Times New Roman", Georgia, serif;
}
h1, h2, h3, h4, h5, h6 {
font-family: Verdana, Arial, Helvetica, sans-serif;
}
#widget {
max-width: 600px;
margin: 0 auto;
}
/* -- Form Styles -- */
form * {
display: block;
}
form label {
font-size: 16px;
font-family: Verdana, Arial, Helvetica, sans-serif;
padding-bottom: 5px;
}
form input#ccNumber {
width: 100%;
font-size: 24px;
border: none;
background-color: #eeeeee;
}
form span.validation {
margin-bottom: 15px;
min-height: 18px;
color: #E0115F;
font-style: italic;
}
form button {
font-size: 18px;
padding: 6px 20px;
border: none;
background-color: #eeeeee;
color: #000000;
float: right;
cursor: pointer;
margin-left: 10px
}
form button[type=submit] {
background-color: #00834E;
color: #ffffff;
}
form button.inactive {
background-color: #aaaaaa;
color: #000000;
}
.issuers span {
filter: grayscale(100%);
height: 48px;
width: 68px;
display: inline-block;
padding: 3px;
margin-right: 5px;
border: 1px solid #000000;
border-radius: 5px;
background-size: contain;
background-repeat: no-repeat;
background-position: center;
background-origin: content-box;
box-sizing: border-box;
}
.issuers span.active {
filter: none;
}
.issuers .visa {
background-image: url('images/visa.png');
}
.issuers .mc {
background-image: url('images/mc.png');
}
.issuers .discover {
background-image: url('images/discover.png');
}
.result {
margin-top: 40px;
}
.resultText {
font-size: 24px;
text-align: center;
color: #00834E;
font-family: Verdana, Arial, Helvetica, sans-serif;
}
.error .resultText {
color: #E0115F;
}