cover.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /*
  2. * Globals
  3. */
  4. /* Links */
  5. a,
  6. a:focus,
  7. a:hover {
  8. color: #fff;
  9. }
  10. /* Custom default button */
  11. .btn-secondary,
  12. .btn-secondary:hover,
  13. .btn-secondary:focus {
  14. color: #333;
  15. text-shadow: none; /* Prevent inheritance from `body` */
  16. background-color: #fff;
  17. border: .05rem solid #fff;
  18. }
  19. /*
  20. * Base structure
  21. */
  22. html,
  23. body {
  24. height: 100%;
  25. background-color: #333;
  26. }
  27. body {
  28. display: -ms-flexbox;
  29. display: flex;
  30. color: #fff;
  31. text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  32. box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
  33. }
  34. .cover-container {
  35. max-width: 42em;
  36. }
  37. /*
  38. * Header
  39. */
  40. .masthead {
  41. margin-bottom: 2rem;
  42. }
  43. .masthead-brand {
  44. margin-bottom: 0;
  45. }
  46. .nav-masthead .nav-link {
  47. padding: .25rem 0;
  48. font-weight: 700;
  49. color: rgba(255, 255, 255, .5);
  50. background-color: transparent;
  51. border-bottom: .25rem solid transparent;
  52. }
  53. .nav-masthead .nav-link:hover,
  54. .nav-masthead .nav-link:focus {
  55. border-bottom-color: rgba(255, 255, 255, .25);
  56. }
  57. .nav-masthead .nav-link + .nav-link {
  58. margin-left: 1rem;
  59. }
  60. .nav-masthead .active {
  61. color: #fff;
  62. border-bottom-color: #fff;
  63. }
  64. @media (min-width: 48em) {
  65. .masthead-brand {
  66. float: left;
  67. }
  68. .nav-masthead {
  69. float: right;
  70. }
  71. }
  72. /*
  73. * Cover
  74. */
  75. .cover {
  76. padding: 0 1.5rem;
  77. }
  78. .cover .btn-lg {
  79. padding: .75rem 1.25rem;
  80. font-weight: 700;
  81. }
  82. /*
  83. * Footer
  84. */
  85. .mastfoot {
  86. color: rgba(255, 255, 255, .5);
  87. }