metaapi.cloud-sdk
Version:
SDK for MetaApi, a professional cloud forex API which includes MetaTrader REST API and MetaTrader websocket API. Supports both MetaTrader 5 (MT5) and MetaTrader 4 (MT4). CopyFactory copy trading API included. (https://metaapi.cloud)
47 lines (39 loc) • 633 B
CSS
/* Form */
.form {
display: flex;
flex-direction: column;
gap: 10px;
}
.field {
width: 100%;
display: grid;
grid-template: auto auto / 1fr;
justify-items: flex-start;
align-content: flex-start;
align-items: flex-start;
gap: 5px;
}
.field span {
font-size: 1.05em;
font-weight: 500;
opacity: 0.6;
}
.field input {
width: 250px;
padding: 5px 2px 5px 15px;
border-radius: 5px;
}
.field input:disabled {
background: #f0f0f0;
cursor: not-allowed;
}
.button {
margin-top: 10px;
padding: 12px 30px 11px;
}
.button--active {
cursor: pointer;
}
.button--disactive {
cursor: not-allowed;
}