-
-
Notifications
You must be signed in to change notification settings - Fork 207
Expand file tree
/
Copy pathaccount-setup.css
More file actions
128 lines (107 loc) Β· 1.79 KB
/
account-setup.css
File metadata and controls
128 lines (107 loc) Β· 1.79 KB
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
body {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
h1,
h2,
h3,
p,
th,
tr,
button {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif,
'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
text-rendering: optimizeLegibility;
}
#logo {
width: 150px;
}
table {
border-collapse: collapse;
}
h1 {
font-weight: 500;
font-size: 60px;
margin-top: 40px;
color: #333;
}
h2 {
font-weight: 300;
margin-top: 40px;
color: #333;
}
h3 {
font-size: 18px;
font-weight: 500;
}
th {
font-weight: 700;
}
td {
font-weight: 400;
color: #333;
}
#accounts {
margin-top: 80px;
}
#accounts-table {
border-radius: 5px;
background: rgb(245, 245, 245);
border: 1px solid rgb(235, 235, 235);
}
p {
padding: 10px 40px;
}
th {
padding: 20px;
}
td {
padding: 10px 20px;
border-top: 1px solid rgb(235, 235, 235);
background: #fff;
}
button {
font-size: 18px;
font-weight: 500;
border-radius: 5px;
padding: 10px 40px;
cursor: pointer;
background-color: transparent;
border: 1px solid #0a85ea;
color: #0a85ea;
transition: all 300ms;
}
button:hover {
color: white;
background-color: #0a85ea;
}
button.remove {
border: 1px solid #ed0d3a;
color: #ed0d3a;
}
button.remove:hover {
color: white;
background-color: #ed0d3a;
}
button.loading,
button.loading:hover,
button.remove.loading:hover {
background: #fff;
border-color: #aaa;
color: #aaa;
cursor: wait;
}
#link-button {
margin-top: 80px;
}
#done-button {
border: 1px solid #2abf54;
color: #2abf54;
margin-top: 40px;
}
#done-button:hover {
color: white;
background-color: #2abf54;
}