accomplishments.css 1.7 KB

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