mt5-manager/static/styles.css

125 lines
2.1 KiB
CSS
Raw Permalink Normal View History

.terminal-card {
transition: opacity 0.3s ease;
}
2025-10-14 16:04:37 +03:00
.loading-card {
background-color: #f9f9f9;
color: #aaa;
2025-10-14 14:16:34 +03:00
}
.loading-card .loaded-content {
display: none;
}
.loaded-card .loading-content {
display: none;
2025-10-14 14:16:34 +03:00
}
.status-running {
border-left: 0.8em solid #59bd55;
border-left: 0.4em solid #89fd85;
2025-10-14 14:16:34 +03:00
}
.status-stopped {
2025-10-21 21:24:09 +03:00
background: #d1ffd1;
border: 1px solid #89fd85;
2025-10-14 14:16:34 +03:00
}
.hidden {
display: none;
2025-10-14 14:16:34 +03:00
}
.card-money {
font-family: 'Consolas', 'Courier New', Courier, monospace;
2025-10-24 15:36:01 +03:00
margin-top: 0.5em;
font-weight: bold;
}
2025-10-24 15:36:01 +03:00
.card-money .title {
position: absolute;
2025-10-24 15:36:01 +03:00
display: inline-block;
margin-top: -1em;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 0.75em;
color: cadetblue;
font-weight: normal;
}
.card-money .balance {
color: #3e81d3;
}
.card-money .equity {
color: #4a7c2b
}
.card-money .profit {
color: #599235
}
.card-money .profit.neg {
color: #a3482c
}
.card-money .profit-pct {
display: inline-block;
font-size: 0.8em;
padding: 0.2em 0.4em;
margin-left: 0.5em;
margin-top: -0.25em;
font-family: 'Consolas', 'Courier New', Courier, monospace;
2025-10-24 15:36:01 +03:00
color: #599235;
background: #eafff3;
border: 1px solid #bbdbbe;
border-radius: 4px;
}
2025-10-24 15:36:01 +03:00
.card-money .profit-pct.neg {
color: #a3482c;
background: #fdede8;
border-color: #fbc2b1;
}
2025-10-30 22:41:27 +03:00
.card-money .margin {
color: #829579;
}
.fade-out {
opacity: 0;
}
2025-10-30 10:01:24 +03:00
.server {
background-size: contain;
width: 1.25em;
height: 1.25em;
display: inline-block;
vertical-align: middle;
2025-10-30 10:01:24 +03:00
background-image: url(/static/img/MetaQuotes-Demo.ico);
}
2025-10-30 10:01:24 +03:00
.server-RoboForex-Pro {
background-image: url(/static/img/RoboForex-Pro.ico);
}
.server-FundedNext-Server,
.server-FundedNext-Server_2,
.server-FundedNext-Server_3,
.server-FundedNext-Server_4 {
background-image: url(/static/img/FundedNext-Server.png);
}
.server-FivePercentOnline-Real {
background-image: url(/static/img/FivePercentOnline-Real.ico);
}
.fa-spin,
.fa-pulse {
animation: fa-spin 2s infinite linear !important;
2025-10-24 15:36:01 +03:00
}
.tc-controls .btn {
width: 2.25em;
2025-10-14 14:16:34 +03:00
}