Skip to content

Commit c253ee4

Browse files
authored
Merge pull request #2972 from XRPLF/add_account_config_topic
Add account configuration topic
2 parents f31c504 + 3119edf commit c253ee4

14 files changed

+1900
-0
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Account Configurator
2+
3+
Create accounts on Testnet or Devnet and try different configuration settings. You can also get account configuration settings for live accounts on Mainnet.
Lines changed: 144 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,144 @@
1+
body {
2+
font-family: "Inter", sans-serif;
3+
padding: 20px;
4+
background: #abe2ff;
5+
}
6+
7+
h1 {
8+
font-weight: bold;
9+
}
10+
11+
td {
12+
padding-left: 25px;
13+
vertical-align: top;
14+
}
15+
16+
input,
17+
button {
18+
padding: 6px;
19+
margin-bottom: 8px;
20+
border: none
21+
}
22+
23+
button {
24+
font-weight: bold;
25+
font-family: "Work Sans", sans-serif;
26+
background-color: #006aff;
27+
-webkit-text-fill-color: white;
28+
}
29+
30+
button:hover {
31+
background-color: #0555c5;
32+
cursor: pointer;
33+
}
34+
35+
td {
36+
vertical-align: middle;
37+
}
38+
39+
/* The switch - the box around the slider */
40+
.switch {
41+
position: relative;
42+
display: inline-block;
43+
width: 30px;
44+
height: 16px;
45+
}
46+
47+
/* Hide default HTML checkbox */
48+
.switch input {
49+
opacity: 0;
50+
width: 0;
51+
height: 0;
52+
}
53+
54+
/* The slider */
55+
.slider {
56+
position: absolute;
57+
cursor: pointer;
58+
top: 0;
59+
left: 0;
60+
right: 0;
61+
bottom: 0;
62+
background-color: #ccc;
63+
-webkit-transition: .4s;
64+
transition: .4s;
65+
}
66+
67+
.slider:before {
68+
position: absolute;
69+
content: "";
70+
height: 13px;
71+
width: 13px;
72+
left: 4px;
73+
bottom: 2px;
74+
background-color: white;
75+
-webkit-transition: .4s;
76+
transition: .4s;
77+
}
78+
79+
input:checked+.slider {
80+
background-color: #2196F3;
81+
}
82+
83+
input:focus+.slider {
84+
box-shadow: 0 0 1px #2196F3;
85+
}
86+
87+
input:checked+.slider:before {
88+
-webkit-transform: translateX(13px);
89+
-ms-transform: translateX(13px);
90+
transform: translateX(13px);
91+
}
92+
93+
/* Rounded sliders */
94+
.slider.round {
95+
border-radius: 17px;
96+
}
97+
98+
.slider.round:before {
99+
border-radius: 50%;
100+
}
101+
.tooltip {
102+
position: relative;
103+
border-bottom: 1px dotted black;
104+
}
105+
106+
.tooltip:before {
107+
content: attr(tooltip-data);
108+
position: absolute;
109+
width: 250px;
110+
background-color: #006aff;
111+
color: #fff;
112+
text-align: center;
113+
padding: 15px;
114+
line-height: 1.1;
115+
border-radius: 5px;
116+
z-index: 1;
117+
opacity: 0;
118+
transition: opacity .5s;
119+
bottom: 125%;
120+
left: 50%;
121+
margin-left: -60px;
122+
font-size: 0.70em;
123+
visibility: hidden;
124+
}
125+
126+
.tooltip:after {
127+
content: "";
128+
position: absolute;
129+
bottom: 75%;
130+
left: 50%;
131+
margin-left: -5px;
132+
border-width: 5px;
133+
border-style: solid;
134+
opacity: 0;
135+
transition: opacity .5s;
136+
border-color: #000 transparent transparent transparent;
137+
visibility: hidden;
138+
}
139+
140+
.tooltip:hover:before,
141+
.tooltip:hover:after {
142+
opacity: 1;
143+
visibility: visible;
144+
}

0 commit comments

Comments
 (0)