Layout von Websiten mit Bootstrap und Foundation
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_navigation.scss 362B

123456789101112131415161718192021222324
  1. .menu {
  2. background-color: $black;
  3. font-size: 150%;
  4. .menu-text {
  5. color: $primary-color;
  6. }
  7. li {
  8. span,i {
  9. color: $white;
  10. }
  11. i {
  12. padding-right: 10px;
  13. }
  14. &:hover:not(.menu-text) {
  15. background-color: lighten($black, 20%);
  16. }
  17. padding: 50px;
  18. }
  19. }