skills.css 1.4 KB

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