12345678910111213141516171819202122232425 |
- .page.cv {
- .macro {
- margin-top: $base-line-height;
-
- &.first {
- margin-top: 0;
- }
-
- .body {
- section {
- margin-top: $base-line-height;
-
- &:first-child, &#full_cv {
- margin-top: 0;
- }
-
- section {
- margin-top: 0;
- padding-left: 1em;
- border-left: 3px solid adjust-lightness($link-color, 40);
- }
- }
- }
- }
- }
|