extra.css 473 B

12345678910111213141516171819202122232425262728293031323334
  1. /* Remove default title on the page */
  2. .md-content__inner h1:first-child {
  3. display: none;
  4. }
  5. /* Adjust to 2px to align with the title */
  6. .md-logo {
  7. padding-top: 6px;
  8. }
  9. .btn {
  10. border: none;
  11. padding: 14px 28px;
  12. cursor: pointer;
  13. display: inline-block;
  14. background: #009688;
  15. color: white;
  16. }
  17. .btn:hover {
  18. background: #00bfa5;
  19. color: white;
  20. }
  21. .center {
  22. display: block;
  23. margin-left: auto;
  24. margin-right: auto;
  25. }
  26. .text-center {
  27. text-align: center;
  28. }