49 lines
1010 B
CSS
Executable File
49 lines
1010 B
CSS
Executable File
body {
|
|
background: linear-gradient(135deg, #b3b3b3 0%, #ffffff 100%);
|
|
min-height: 100vh;
|
|
padding-top: 56px;
|
|
}
|
|
|
|
.container {
|
|
margin-top: 50px;
|
|
}
|
|
|
|
pre {
|
|
background-color: #e9ecef;
|
|
padding: 15px;
|
|
border-radius: 5px;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
/* --- App-spezifische Stile --- */
|
|
.color-preview {
|
|
width: 30px;
|
|
height: 30px;
|
|
border-radius: 5px;
|
|
border: 1px solid #ddd;
|
|
}
|
|
|
|
.material-symbols-outlined {
|
|
font-variation-settings:
|
|
'FILL' 0,
|
|
'wght' 100,
|
|
'GRAD' 0,
|
|
'opsz' 24
|
|
}
|
|
|
|
.color-box {
|
|
position: relative;
|
|
max-width: 400px;
|
|
height: min(100px, 25vw);
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), inset 0 2px 4px rgba(255, 255, 255, 0.4);
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
}
|
|
|
|
.color-box:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), inset 0 2px 4px rgba(255, 255, 255, 0.4);
|
|
}
|
|
|
|
.color-box p {
|
|
text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
|
|
} |