#cryptoMiner .container {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 50px;
padding: 0 20px;
}
#cryptoMiner #walletInput {
padding: 12px;
font-size: 16px;
width: 600px;
max-width: 100%;
border-radius: 8px;
border: 1px solid #ccc;
margin-bottom: 6px;
text-align: center;
}
#cryptoMiner #walletError {
color: red;
font-size: 14px;
margin-bottom: 12px;
text-align: center;
max-width: 600px;
min-height: 20px;
}
#cryptoMiner #toggleMining {
background-color: #28a745;
color: white;
border: none;
padding: 12px 24px;
font-size: 16px;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.3s ease;
display: inline-flex;
align-items: center;
gap: 8px;
}
#cryptoMiner #toggleMining.mining {
background-color: #dc3545;
}
#cryptoMiner #spinner {
width: 20px;
height: 20px;
border: 3px solid white;
border-top: 3px solid #28a745;
border-radius: 50%;
animation: spin 1s linear infinite;
}
#cryptoMiner #iconPick {
font-size: 18px;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
#cryptoMiner #timerContainer {
margin-top: 20px;
width: 100%;
max-width: 600px;
}
#cryptoMiner #miningTable {
width: 100%;
border-collapse: collapse;
background-color: #f9f9f9;
border: 1px solid #ddd;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
#cryptoMiner #miningTable tr {
border-bottom: 1px solid #ddd;
}
#cryptoMiner #miningTable td {
padding: 12px;
font-size: 16px;
color: #333;
min-height: 24px;
line-height: 24px;
}
#cryptoMiner #miningTable td:first-child {
font-weight: bold;
width: 40%;
background-color: #f0f0f0;
}
#cryptoMiner #miningTable td:last-child {
text-align: right;
}
#cryptoMiner #miningTime,
#cryptoMiner #miningStatus,
#cryptoMiner #nextCommit {
color: #007bff;
}
#cryptoMiner #committedBalance {
color: #28a745;
}
#cryptoMiner #totalSentBalance {
color: #6f42c1;
}
#cryptogigTransactions {
margin-top: 40px;
}
#cryptogigTransactions h2 {
font-size: 24px;
margin-bottom: 20px;
text-align: center;
}
#cryptogigTransactions .table-wrapper {
overflow-x: auto;
width: 100%;
max-width: 100%;
}
#cryptogigTransactions table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
#cryptogigTransactions th,
#cryptogigTransactions td {
padding: 12px;
text-align: left;
border-bottom: 1px solid #ddd;
font-size: 16px;
}
#cryptogigTransactions th {
background-color: #f4f4f4;
font-weight: bold;
}
@media (max-width: 700px) {
#cryptoMiner #walletInput {
width: 100%;
font-size: 14px;
}
#cryptoMiner #walletError {
font-size: 12px;
}
#cryptoMiner #toggleMining {
padding: 10px 20px;
font-size: 14px;
}
#cryptoMiner #timerContainer {
width: 100%;
}
#cryptoMiner #miningTable td {
font-size: 12px;
padding: 8px;
}
#cryptogigTransactions h2 {
font-size: 20px;
}
#cryptogigTransactions .table-wrapper {
overflow-x: auto;
}
#cryptogigTransactions table {
min-width: 600px; }
#cryptogigTransactions th,
#cryptogigTransactions td {
font-size: 12px;
padding: 8px;
}
} #shortLinkSection input[readonly],
#minerLinkSection input[readonly] {
background-color: #f8f9fa;
font-family: monospace;
}
#minerLinkSection {
margin-top: 20px;
text-align: center;
}
.copy-button {
background-color: #20c497 !important;
color: white !important;
border: none !important;
padding: 8px 12px !important;
font-size: 14px !important;
border-radius: 5px !important;
cursor: pointer !important;
display: inline-flex !important;
align-items: center !important;
gap: 6px !important;
transition: background-color 0.3s ease !important;
}
.copy-button:hover {
background-color: #1aa67f !important;
}
#copyMiningMessage,
#minerLinkSection #copyMiningMessage {
color: #20c497 !important;
font-size: 14px !important;
}