-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathstyles.css
97 lines (82 loc) · 2 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
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
font-size: 16px;
background: #e6f1ff;
}
.wrapper {
display: flex;
margin: 40px auto 0;
width: 80%;
}
.wrapper form {
width: 100%;
}
.row {
display: flex;
width: 100%;
}
label {
opacity: 0.6;
font-size: 18px;
padding-bottom: 7px;
padding-top: 13px;
font-weight: 500;
display: block;
}
.mollie-component {
background: #fff;
box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1), 0px 2px 4px rgba(0, 0, 0, 0.1),
0px 4px 8px rgba(0, 0, 0, 0.05);
border-radius: 4px;
padding: 13px;
border: 1px solid transparent;
transition: 0.15s border-color cubic-bezier(0.4, 0, 0.2, 1);
font-weight: 500;
}
.mollie-component.has-focus {
border-color: #0077ff;
transition: 0.3s border-color cubic-bezier(0.4, 0, 0.2, 1);
}
.mollie-component.is-invalid {
border-color: #ff1717;
transition: 0.3s border-color cubic-bezier(0.4, 0, 0.2, 1);
}
.field-error {
font-size: 12px;
margin-top: 2px;
color: #ff1717;
font-weight: 400;
}
button.submit-button {
width: 100%;
border: 0;
background: #0077ff;
box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1), 0px 2px 4px rgba(0, 0, 0, 0.1),
0px 4px 8px rgba(0, 0, 0, 0.05);
border-radius: 4px;
padding: 14px;
color: #ffffff;
font-weight: 600;
font-size: 18px;
opacity: 0.9;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
outline: 0;
transition: 0.3s opacity cubic-bezier(0.4, 0, 0.2, 1);
}
button.submit-button:hover {
opacity: 1;
}
.form-fields {
margin-bottom: 24px;
}
.form-group {
width: 100%;
}
.form-group--expiry-date {
margin-right: 8px;
}
.form-group--verification-code {
margin-left: 8px;
}