mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-04 00:18:52 -04:00
The drop shadow stolen from GOV.UK was a bit crude; this commit makes it a bit more refined. Also makes things line up a bit better.
14 lines
356 B
SCSS
14 lines
356 B
SCSS
$outline-width: 5px;
|
|
|
|
.letter {
|
|
font-family: Helvetica, Arial, sans-serif;
|
|
box-shadow:
|
|
1px 1px 0 0 $panel-colour,
|
|
2px 2px 0 0 rgba($panel-colour, 0.5),
|
|
-1px 1px 0 0 $panel-colour,
|
|
-2px 2px 0 0 rgba($panel-colour, 0.5);
|
|
outline: $outline-width solid rgba($text-colour, 0.1);
|
|
padding: 20px;
|
|
margin: $outline-width $outline-width $gutter;
|
|
}
|