features.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. .b-example-divider {
  2. height: 3rem;
  3. background-color: rgba(0, 0, 0, .1);
  4. border: solid rgba(0, 0, 0, .15);
  5. border-width: 1px 0;
  6. box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
  7. }
  8. .bi {
  9. vertical-align: -.125em;
  10. fill: currentColor;
  11. }
  12. .feature-icon {
  13. display: inline-flex;
  14. align-items: center;
  15. justify-content: center;
  16. width: 4rem;
  17. height: 4rem;
  18. margin-bottom: 1rem;
  19. font-size: 2rem;
  20. color: #fff;
  21. border-radius: .75rem;
  22. }
  23. .icon-link {
  24. display: inline-flex;
  25. align-items: center;
  26. }
  27. .icon-link > .bi {
  28. margin-top: .125rem;
  29. margin-left: .125rem;
  30. transition: transform .25s ease-in-out;
  31. fill: currentColor;
  32. }
  33. .icon-link:hover > .bi {
  34. transform: translate(.25rem);
  35. }
  36. .icon-square {
  37. display: inline-flex;
  38. align-items: center;
  39. justify-content: center;
  40. width: 3rem;
  41. height: 3rem;
  42. font-size: 1.5rem;
  43. border-radius: .75rem;
  44. }
  45. .rounded-4 { border-radius: .5rem; }
  46. .rounded-5 { border-radius: 1rem; }
  47. .text-shadow-1 { text-shadow: 0 .125rem .25rem rgba(0, 0, 0, .25); }
  48. .text-shadow-2 { text-shadow: 0 .25rem .5rem rgba(0, 0, 0, .25); }
  49. .text-shadow-3 { text-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .25); }
  50. .card-cover {
  51. background-repeat: no-repeat;
  52. background-position: center center;
  53. background-size: cover;
  54. }