Spaces:
Sleeping
Sleeping
File size: 833 Bytes
2303095 | 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 | .run-node {
border: 2px solid #28a745;
border-radius: 8px;
background: #f0fff4;
width: 250px;
box-shadow: 0 4px 10px rgba(40, 167, 69, 0.2);
}
.run-node-header {
background: #28a745;
padding: 10px;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
font-size: 14px;
font-weight: bold;
color: white;
text-align: center;
}
.run-node-content {
padding: 15px;
text-align: center;
}
.run-node-content p {
font-size: 12px;
color: #666;
margin-top: 0;
margin-bottom: 15px;
}
.run-node-content .run-button {
width: 100%;
padding: 10px;
font-size: 14px;
font-weight: bold;
background-color: #28a745;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.2s;
}
.run-node-content .run-button:hover {
background-color: #218838;
}
|