skills.css 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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 .skill-card-link {
  9. text-decoration: none;
  10. }
  11. .skills-section .card .card-img-xs {
  12. margin-right: 0.5rem;
  13. }
  14. .skills-section .card {
  15. margin-top: 0.5rem;
  16. margin-bottom: 0.5rem;
  17. }
  18. .skills-section .card .card-body {
  19. padding-top: 0.2rem;
  20. padding-left: 0.7rem;
  21. }
  22. /* ============= Device specific fixes ======= */
  23. /* Large screens such as TV */
  24. @media only screen and (min-width: 1824px) {
  25. }
  26. /* Extra large devices (large desktops, 1200px and up) */
  27. @media (max-width: 1400px) {
  28. }
  29. @media (max-width: 1200px) {
  30. }
  31. /* IPad Pro */
  32. @media (max-width: 1024px) {
  33. }
  34. /* Large devices (desktops, 992px and up) */
  35. @media (max-width: 992px) {
  36. }
  37. /* Medium devices (tablets, 768px and up) */
  38. @media only screen and (max-width: 768px) {
  39. .skills-section {
  40. padding-left: 0;
  41. padding-right: 0;
  42. }
  43. .skills-section .container {
  44. max-width: 100%;
  45. }
  46. }
  47. /* Small devices (landscape phones, 576px and up) */
  48. @media only screen and (max-width: 576px) {
  49. }
  50. /* iPhoneX, iPhone 6,7,8 */
  51. @media only screen and (max-width: 375px) {
  52. }
  53. /* Galaxy S5, Moto G4 */
  54. @media only screen and (max-width: 360px) {
  55. }
  56. /* iPhone 5 or before */
  57. @media only screen and (max-width: 320px) {
  58. }