Skip to content

Commit c3b2402

Browse files
committed
docs(style): make shadows on pre sections have tint of background
The grey shadows on a wheat colored background looked bad. Add some of the backgound color to the shadow.
1 parent 633acdf commit c3b2402

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

doc/_static/style.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -455,9 +455,9 @@ div.highlight > pre {
455455
linear-gradient(to right, #f5f4d8, #f5f4d8),
456456
/* Shadow */
457457
radial-gradient(farthest-side at 0px 50%,
458-
rgba(0, 0, 20, 0.5), rgba(255, 255, 255, 0)),
458+
rgba(181, 181, 113, 0.75), rgba(255, 255, 255, 0)),
459459
radial-gradient(farthest-side at 100% 50%,
460-
rgba(0, 0, 20, 0.5), rgba(255, 255, 255, 0));
460+
rgba(181, 181, 113, 0.75), rgba(255, 255, 255, 0));
461461
/* square shadows */
462462
/*
463463
linear-gradient(to right, rgba(0, 0, 0, 0.25), rgba(255, 255, 255, 0)),

website/www/_static/style.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -455,9 +455,9 @@ div.highlight > pre {
455455
linear-gradient(to right, #f5f4d8, #f5f4d8),
456456
/* Shadow */
457457
radial-gradient(farthest-side at 0px 50%,
458-
rgba(0, 0, 20, 0.5), rgba(255, 255, 255, 0)),
458+
rgba(181, 181, 113, 0.75), rgba(255, 255, 255, 0)),
459459
radial-gradient(farthest-side at 100% 50%,
460-
rgba(0, 0, 20, 0.5), rgba(255, 255, 255, 0));
460+
rgba(181, 181, 113, 0.75), rgba(255, 255, 255, 0));
461461
/* square shadows */
462462
/*
463463
linear-gradient(to right, rgba(0, 0, 0, 0.25), rgba(255, 255, 255, 0)),

0 commit comments

Comments
 (0)