accomplishments.css 1.9 KB

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