Personal portfolio website created with bootstrap.
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.

43 lines
784 B

  1. // Bootstrap overrides for this template
  2. .btn-outline {
  3. font-size: 20px;
  4. margin-top: 15px;
  5. transition: all 0.3s ease-in-out;
  6. color: white;
  7. border: solid 2px white;
  8. background: transparent;
  9. &.active,
  10. &:active,
  11. &:focus,
  12. &:hover {
  13. color: $theme-success;
  14. border: solid 2px white;
  15. background: white;
  16. }
  17. }
  18. .btn-primary {
  19. font-weight: 700;
  20. @include button-variant(white, $theme-primary, $theme-primary);
  21. }
  22. .btn-success {
  23. font-weight: 700;
  24. @include button-variant(white, $theme-success, $theme-success);
  25. }
  26. .btn-social {
  27. font-size: 20px;
  28. line-height: 45px;
  29. display: inline-block;
  30. width: 50px;
  31. height: 50px;
  32. text-align: center;
  33. border: 2px solid white;
  34. border-radius: 100%;
  35. }
  36. .btn.active,
  37. .btn:active,
  38. .btn:focus {
  39. outline: none;
  40. }