skills.css 1.5 KB

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