-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathstyle.css
79 lines (68 loc) · 1.14 KB
/
style.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
/**
* style.css
* Airwallex Payment Demo - Static HTML. Created by Josie Ku.
*
* This file provides styling to the demo site. This is not required for the integration.
*/
body {
padding: 15px 25px;
}
span#code {
font-family: monospace;
background-color: lightgrey;
font-size: 16px;
}
div#links {
display: flex;
flex-direction: column;
}
button {
margin-top: 15px;
padding: 5px 10px;
font-weight: 500;
cursor: pointer;
background-color: #612fff;
color: #fff;
outline: none;
border: none;
border-radius: 5px;
min-width: 40px;
min-height: 40px;
}
button:disabled {
opacity: 0.75;
}
p#error {
background: #ffebee;
border-radius: 5px;
padding: 5px 10px;
max-width: 400px;
display: none;
}
p#success {
background: lightgreen;
border-radius: 5px;
padding: 5px 10px;
max-width: 400px;
display: none;
}
p#author {
position: absolute;
bottom: 0;
}
.field-container {
margin: 15px 0px;
}
div.instruction-container {
padding: 10px 50px;
text-align: left;
}
span#code {
font-family: monospace;
background-color: lightgrey;
font-size: 16px;
margin: 0px 5px;
}
p#bullet {
font-weight: bold;
}