accomplishments.css 1.9 KB

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