accomplishments.scss 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. .accomplishments-section {
  2. h1 > span{
  3. margin-top: -55px; /* Size of fixed header */
  4. padding-bottom:55px;
  5. display: block;
  6. }
  7. .card {
  8. background: #fff;
  9. border-top: 2px solid #248aaa;
  10. height: 100%;
  11. }
  12. .card .card-header {
  13. background: none;
  14. border: none;
  15. }
  16. .card .card-header .sub-title {
  17. color: #8392a5;
  18. margin-top: 0.4rem;
  19. }
  20. .card .sub-title :nth-child(2) {
  21. float: none !important;
  22. }
  23. .card .card-body {
  24. padding: 0;
  25. padding-left: 1rem;
  26. padding-right: 1rem;
  27. }
  28. .card .card-footer {
  29. background: #fff;
  30. border: none;
  31. padding: 0;
  32. padding-left: 0.7rem;
  33. padding-bottom: 0.3rem;
  34. }
  35. /* ============= Device specific fixes ======= */
  36. /* Large screens such as TV */
  37. @media only screen and (min-width: 1824px) {
  38. }
  39. /* Extra large devices (large desktops, 1200px and up) */
  40. @media (max-width: 1400px) {
  41. }
  42. @media (max-width: 1200px) {
  43. }
  44. /* IPad Pro */
  45. @media (max-width: 1024px) {
  46. width: 100%;
  47. padding: 0;
  48. padding-left: 0.2rem;
  49. padding-right: 0.2rem;
  50. .container {
  51. max-width: 100%;
  52. }
  53. }
  54. /* Large devices (desktops, 992px and up) */
  55. @media (max-width: 992px) {
  56. }
  57. /* Medium devices (tablets, 768px and up) */
  58. @media only screen and (max-width: 768px) {
  59. }
  60. /* Small devices (landscape phones, 576px and up) */
  61. @media only screen and (max-width: 576px) {
  62. flex: 100%;
  63. max-width: 100%;
  64. margin-top: 2rem;
  65. }
  66. /* iPhoneX, iPhone 6,7,8 */
  67. @media only screen and (max-width: 375px) {
  68. }
  69. /* Galaxy S5, Moto G4 */
  70. @media only screen and (max-width: 360px) {
  71. }
  72. /* iPhone 5 or before */
  73. @media only screen and (max-width: 320px) {
  74. }
  75. }