-
Notifications
You must be signed in to change notification settings - Fork 7
/
styles.css
139 lines (121 loc) · 2.19 KB
/
styles.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/**
* QPay Checkout Page Demo
* - Terms of use can be found under
* https://guides.qenta.com/
* - License can be found under:
* https://github.com/qenta-cee/qcp-example-php/blob/master/LICENSE.
*/
body {
margin: 0;
width: 700px;
padding-top: 20px;
padding-left: 100px;
padding-bottom: 20px;
font-family: europa, sans-serif;
font-size: 0.9em;
color: rgb(23, 64, 101);
}
#content {
min-height: 100vh;
}
p.main {
font-size: 1.5em;
}
input[type="submit"], input[type="button"] {
cursor: pointer;
background-color: #d33c35;
color: #fff;
border: 1px solid transparent;
margin: 0;
overflow: visible;
font: inherit;
padding: 0 20px;
font-size: 0.7em;
line-height: 1.75rem;
text-decoration: none;
transition: .1s ease-in-out;
transition-property: all;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 2px;
background-origin: border-box;
}
a {
color: #104d92;
}
select {
font-size: inherit;
}
footer {
background-image: url(https://qenta-cee.at/wp-content/uploads/2020/10/RZ-Logo-QENTA-CMYK-invertiert.svg);
background-color: #174065;
position: absolute;
left: 0;
width: 100%;
height: 3em;
background-repeat: no-repeat;
background-size: 6.5em;
color: #fff;
margin-top: 1em;
background-position-y: center;
background-position-x: 1em;
}
#btnCheckout {
font-weight: bold;
font-size: inherit;
padding: inherit;
padding-left: 2em;
padding-right: 2em;
margin-top: 1.2em;
}
#btnShowPayloadTable {
margin-top: 1em;
}
#qcpTable {
border: 1px solid #ccc;
padding: 1em;
font-size: 1.5em;
}
#qcpTable td {
border: 0;
border-bottom: 1px solid #ccc;
}
#qcpTable tr:last-child td {
border: 0;
}
table {
width: 700px;
}
table.payload {
margin-top: 1em;
table-layout: fixed;
border: 0;
display: none;
}
table.payload tr:hover {
background-color: #eee;
font-weight: bold;
}
table.payload td {
border: 0;
border-bottom: 1px solid #ccc;
font-family: monospace;
font-size: 1em;
line-break: anywhere;
}
table.payload td > input {
width:100%;
font-family: monospace;
border: 0;
background-color: #eee;
font-size: 1em;
color: inherit;
padding: 0.5em;
padding-right: 0;
}
td {
font-size: 0.8em;
}
big i {
color: #d33c35;
}