Template:X1/styles.css
Appearance
.Macintosh {
width: 704px;
height: 546px;
border: 1px solid #000000;
border-radius: 10px;
background: #f5f5dc;
}
.Screen {
width: 640px;
height: 450px;
border: 1px solid #000000;
background: #ffffff;
}
.Led {
width: 28px;
height: 8px;
animation: BinaryLedBlink 0.1s infinite;
}
@keyframes BinaryLedBlink {
from {
background: #00ff00;
}
to {
background: #000000;
}
}