-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.css
119 lines (104 loc) · 1.82 KB
/
App.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
*, *:before, *:after {
box-sizing: inherit;
}
html {
box-sizing: border-box;
height: 100%;
overflow: hidden;
}
body {
background: #f2f2f2;
height: 100%;
}
h1 {
font-size: 1.5em;
font-weight: 100;
}
#card-form {
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.panel {
background: #FFF;
width: 80%;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .16), 0 0 2px 0 rgba(0, 0, 0, .12);
}
.panel-header {
background: #93A2FA;
color: #FFF;
font-family: 'Roboto', verdana, sans-serif;
}
.panel-header, .panel-footer {
padding: 1em 2em;
}
.panel-footer {
background: #f3f3f3;
}
.panel-content {
padding: 1em 2em;
overflow: hidden;
}
.textfield-float-label {
width: 49%;
display: inline-block;
}
.paysafe-js-label {
font-family: 'Roboto', verdana, sans-serif;
transform: translateY(0.4em);
font-size: 1.125em;
line-height: 32px;
transition: all .15s ease-out;
display: block;
width: 100%;
font-weight: 400;
overflow: hidden;
margin-bottom: 0.5em;
}
.paysafe-js {
height: 32px;
margin-bottom: 1em;
display: block;
background-color: transparent;
color: rgba(0, 0, 0, .87);
border: none;
border-bottom: 1px solid rgba(0, 0, 0, .26);
outline: 0;
width: 100%;
font-size: 16px;
padding: 0;
box-shadow: none;
border-radius: 0;
position: relative;
}
.pay-button {
background: #93A2FA;
color: #fff;
margin: 0 auto;
border: 0;
border-radius: 5px;
padding: 1em 3em;
font-size: 1em;
box-shadow: 0 0 2px rgba(0, 0, 0, .12), 0 2px 2px rgba(0, 0, 0, .2);
}
@media (max-width: 600px) {
html {
overflow: auto;
}
#card-form {
height: auto;
margin: 2em;
font-size: 13px;
}
.panel {
width: 100%;
}
.textfield-float-label {
width: 100%;
display: inline-block;
}
.pay-button {
width: 100%;
}
}