-
Notifications
You must be signed in to change notification settings - Fork 6
/
styles.css
102 lines (87 loc) · 1.72 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
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
font-size: 16px;
background: #fff;
color: #000;
}
.wrapper {
display: flex;
margin: 40px auto 0;
width: 80%;
max-width: 718px;
}
input {
color: #fff;
}
.wrapper form {
width: 100%;
}
label {
opacity: 0.6;
font-size: 18px;
font-weight: 500;
color: #173d68;
padding-bottom: 7px;
display: block;
}
.mollie-component {
background: #dfedfa;
border-radius: 56px;
padding: 12px 24px;
border: 1px solid transparent;
transition: 0.15s border-color cubic-bezier(0.4, 0, 0.2, 1);
color: #173d68;
}
.mollie-component.has-focus {
border-color: #8799af;
}
.mollie-component.is-invalid {
border-color: #ce0000;
background: rgba(206, 0, 0, 0.2);
}
.mollie-component.is-valid {
border-color: #dfedfa;
}
.field-error {
font-size: 10px;
margin-top: 4px;
color: #ce0000;
font-weight: normal;
padding-left: 24px;
}
button.submit-button {
width: 100%;
border: 0;
border-radius: 100px;
background: #173d68;
padding: 18px;
color: #fff;
font-weight: 600;
font-size: 16px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
outline: 0;
cursor: pointer;
transition: 0.3s opacity cubic-bezier(0.4, 0, 0.2, 1);
}
button.submit-button:hover {
transition: 0.3s opacity cubic-bezier(0.4, 0, 0.2, 1);
}
.form-group {
width: 100%;
margin: 14px 0 0 0;
flex: 1 1 20%;
display: flex;
width: 100%;
align-items: center;
}
.form-group.button {
margin-top: 14px;
}
.form-group > *:first-child {
flex: 0 0 180px;
}
.form-group > div {
flex: 1;
}