Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. /*
  2. * Globals
  3. */
  4.  
  5. /* Links */
  6. a,
  7. a:focus,
  8. a:hover {
  9. color: #fff;
  10. }
  11.  
  12. /* Custom default button */
  13. .btn-secondary,
  14. .btn-secondary:hover,
  15. .btn-secondary:focus {
  16. color: #333;
  17. text-shadow: none; /* Prevent inheritance from `body` */
  18. background-color: #fff;
  19. border: .05rem solid #fff;
  20. }
  21.  
  22.  
  23. /*
  24. * Base structure
  25. */
  26. #particles-js{
  27. position: fixed;
  28. width: 100%;
  29. height: 100%;
  30. z-index: -1;
  31. top: 0;
  32. left: 0;
  33. background-color: #232741;
  34. }
  35.  
  36.  
  37. html,
  38. body {
  39. height: 100%;
  40. background-color: transparent;
  41. }
  42.  
  43. body {
  44. display: -ms-flexbox;
  45. display: flex;
  46. color: #fff;
  47. text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  48. box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
  49. }
  50.  
  51. .cover-container {
  52. max-width: 42em;
  53. }
  54.  
  55.  
  56. /*
  57. * Header
  58. */
  59. .masthead {
  60. margin-bottom: 2rem;
  61. }
  62.  
  63. .masthead-brand {
  64. margin-bottom: 0;
  65. }
  66.  
  67. .nav-masthead .nav-link {
  68. padding: .25rem 0;
  69. font-weight: 700;
  70. color: rgba(255, 255, 255, .5);
  71. background-color: transparent;
  72. border-bottom: .25rem solid transparent;
  73. }
  74.  
  75. .nav-masthead .nav-link:hover,
  76. .nav-masthead .nav-link:focus {
  77. border-bottom-color: rgba(255, 255, 255, .25);
  78. }
  79.  
  80. .nav-masthead .nav-link + .nav-link {
  81. margin-left: 1rem;
  82. }
  83.  
  84. .nav-masthead .active {
  85. color: #fff;
  86. border-bottom-color: #fff;
  87. }
  88.  
  89. @media (min-width: 48em) {
  90. .masthead-brand {
  91. float: left;
  92. }
  93. .nav-masthead {
  94. float: right;
  95. }
  96. }
  97.  
  98.  
  99. /*
  100. * Cover
  101. */
  102. .cover {
  103. padding: 0 1.5rem;
  104. }
  105. .cover .btn-lg {
  106. padding: .75rem 1.25rem;
  107. font-weight: 700;
  108. }
  109.  
  110.  
  111. /*
  112. * Footer
  113. */
  114. .mastfoot {
  115. color: rgba(255, 255, 255, .5);
  116. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement