File size: 1,211 Bytes
ec33ac6 583b49c 3557ec6 583b49c 3557ec6 583b49c 3557ec6 583b49c 3557ec6 583b49c 3557ec6 583b49c 3557ec6 |
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 |
/* Flex row for two containers side by side */
.flex-col-2 {
display: flex;
flex-direction: row;
gap: 32px;
justify-content: center;
align-items: flex-start;
margin-bottom: 32px;
}
body {
background: #f6f8fa;
font-family: 'Segoe UI', Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
min-height: 100vh;
align-items: center;
justify-content: center;
}
.container {
background: #fff;
border-radius: 12px;
box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
padding: 32px 40px;
max-width: 350px;
width: 100%;
text-align: center;
}
.status {
margin-bottom: 24px;
font-size: 1.2em;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}
.dot {
width: 12px;
height: 12px;
border-radius: 50%;
display: inline-block;
background: #bbb;
transition: background 0.3s;
}
.dot.connected {
background: #4caf50;
}
.dot.disconnected {
background: #f44336;
}
.info {
text-align: left;
margin-top: 16px;
font-size: 1em;
color: #333;
}
.info dt {
font-weight: bold;
margin-bottom: 4px;
}
.info dd {
margin: 0 0 12px 0;
color: #555;
} |