mirror of
https://github.com/danbee/cv
synced 2025-03-04 08:59:12 +00:00
* Start organizing CSS according to ITCSS * Replace logo with rainbow db * Add Imagine Learning to experience * Refactor layout to use CSS grid
20 lines
275 B
SCSS
20 lines
275 B
SCSS
#stripe {
|
|
background: #262626;
|
|
height: 12px;
|
|
line-height: 0;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
|
|
canvas {
|
|
height: 12px;
|
|
width: 100%;
|
|
}
|
|
|
|
@media print {
|
|
display: none;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
background: #121212;
|
|
}
|
|
}
|