skills.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. .skills-section .card .card-head {
  2. background-color: #f9fafc;
  3. height: fit-content;
  4. padding: 0.7rem;
  5. padding-bottom: 0rem;
  6. border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.125);
  7. }
  8. .skills-section .card .card-img-xs {
  9. margin-right: 0.5rem;
  10. }
  11. .skills-section .card {
  12. margin-top: 0.5rem;
  13. margin-bottom: 0.5rem;
  14. }
  15. .skills-section .card .card-body {
  16. padding-top: 0.2rem;
  17. padding-left: 0.7rem;
  18. }
  19. /* ============= Device specific fixes ======= */
  20. /* Large screens such as TV */
  21. @media only screen and (min-width: 1824px) {
  22. }
  23. /* Extra large devices (large desktops, 1200px and up) */
  24. @media (max-width: 1400px) {
  25. }
  26. @media (max-width: 1200px) {
  27. }
  28. /* IPad Pro */
  29. @media (max-width: 1024px) {
  30. }
  31. /* Large devices (desktops, 992px and up) */
  32. @media (max-width: 992px) {
  33. }
  34. /* Medium devices (tablets, 768px and up) */
  35. @media only screen and (max-width: 768px) {
  36. .skills-section {
  37. padding-left: 0;
  38. padding-right: 0;
  39. }
  40. .skills-section .container {
  41. max-width: 100%;
  42. }
  43. }
  44. /* Small devices (landscape phones, 576px and up) */
  45. @media only screen and (max-width: 576px) {
  46. }
  47. /* iPhoneX, iPhone 6,7,8 */
  48. @media only screen and (max-width: 375px) {
  49. }
  50. /* Galaxy S5, Moto G4 */
  51. @media only screen and (max-width: 360px) {
  52. }
  53. /* iPhone 5 or before */
  54. @media only screen and (max-width: 320px) {
  55. }