skills.css 1.4 KB

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