cover.css 807 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*
  2. * Globals
  3. */
  4. /* Custom default button */
  5. .btn-secondary,
  6. .btn-secondary:hover,
  7. .btn-secondary:focus {
  8. color: #333;
  9. text-shadow: none; /* Prevent inheritance from `body` */
  10. }
  11. /*
  12. * Base structure
  13. */
  14. body {
  15. text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  16. box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
  17. }
  18. .cover-container {
  19. max-width: 42em;
  20. }
  21. /*
  22. * Header
  23. */
  24. .nav-masthead .nav-link {
  25. padding: .25rem 0;
  26. font-weight: 700;
  27. color: rgba(255, 255, 255, .5);
  28. background-color: transparent;
  29. border-bottom: .25rem solid transparent;
  30. }
  31. .nav-masthead .nav-link:hover,
  32. .nav-masthead .nav-link:focus {
  33. border-bottom-color: rgba(255, 255, 255, .25);
  34. }
  35. .nav-masthead .nav-link + .nav-link {
  36. margin-left: 1rem;
  37. }
  38. .nav-masthead .active {
  39. color: #fff;
  40. border-bottom-color: #fff;
  41. }