File size: 2,539 Bytes
4efaf4f | 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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 | * {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
padding: 20px;
}
.container {
max-width: 800px;
margin: 0 auto;
background: white;
border-radius: 20px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
overflow: hidden;
}
header {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 40px;
text-align: center;
}
header h1 {
font-size: 2.5em;
margin-bottom: 10px;
}
.subtitle {
font-size: 1.2em;
opacity: 0.9;
}
main {
padding: 40px;
}
section {
margin-bottom: 40px;
}
h2 {
color: #333;
margin-bottom: 20px;
font-size: 1.8em;
}
.status-indicator {
display: flex;
align-items: center;
gap: 15px;
padding: 20px;
background: #f5f5f5;
border-radius: 10px;
}
.status-dot {
width: 20px;
height: 20px;
border-radius: 50%;
background: #ccc;
transition: background 0.3s;
}
.status-dot.running {
background: #4CAF50;
animation: pulse 2s infinite;
}
.status-dot.stopped {
background: #f44336;
}
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
.status-text {
font-size: 1.2em;
color: #666;
}
.info-card {
background: #f9f9f9;
padding: 20px;
border-radius: 10px;
margin-bottom: 15px;
border-left: 4px solid #667eea;
}
.info-card h3 {
color: #667eea;
margin-bottom: 10px;
}
.info-card p {
color: #666;
line-height: 1.6;
margin-bottom: 5px;
}
.actions {
text-align: center;
}
.btn {
padding: 15px 40px;
font-size: 1.1em;
border: none;
border-radius: 10px;
cursor: pointer;
transition: all 0.3s;
margin: 0 10px;
}
.btn-primary {
background: #667eea;
color: white;
}
.btn-primary:hover {
background: #5568d3;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}
.btn-secondary {
background: #f44336;
color: white;
}
.btn-secondary:hover {
background: #da190b;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(244, 67, 54, 0.4);
}
footer {
background: #f5f5f5;
padding: 20px;
text-align: center;
color: #666;
}
footer a {
color: #667eea;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
} |