48 lines
865 B
CSS
48 lines
865 B
CSS
.code-block-container {
|
|
margin: 30px 0;
|
|
border-radius: 12px;
|
|
overflow: hidden;
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
background: #1e1e1e;
|
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
.code-block-header {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 12px 16px;
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
|
|
}
|
|
|
|
.window-controls {
|
|
display: flex;
|
|
gap: 8px;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.control-dot {
|
|
width: 12px;
|
|
height: 12px;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.control-dot.red {
|
|
background: #ff5f56;
|
|
}
|
|
|
|
.control-dot.yellow {
|
|
background: #ffbd2e;
|
|
}
|
|
|
|
.control-dot.green {
|
|
background: #27c93f;
|
|
}
|
|
|
|
.language-label {
|
|
font-size: 12px;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
font-family: monospace;
|
|
text-transform: uppercase;
|
|
margin-top: 2px;
|
|
} |