skills.scss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. .skills-section {
  2. .card .card-head {
  3. background-color: #f9fafc;
  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. h1 > span{
  11. margin-top: -55px; /* Size of fixed header */
  12. padding-bottom:55px;
  13. display: block;
  14. }
  15. .skill-card-link {
  16. text-decoration: none;
  17. }
  18. .card .card-img-xs {
  19. margin-right: 0.5rem;
  20. margin-bottom: 0.75rem;
  21. }
  22. .card {
  23. margin-top: 0.5rem;
  24. margin-bottom: 0.5rem;
  25. height: 100%;
  26. }
  27. .card .card-body {
  28. padding-top: 0.2rem;
  29. padding-left: 0.7rem;
  30. }
  31. /* ============= Device specific fixes ======= */
  32. /* Large screens such as TV */
  33. @media only screen and (min-width: 1824px) {
  34. }
  35. /* Extra large devices (large desktops, 1200px and up) */
  36. @media (max-width: 1400px) {
  37. }
  38. @media (max-width: 1200px) {
  39. }
  40. /* IPad Pro */
  41. @media (max-width: 1024px) {
  42. }
  43. /* Large devices (desktops, 992px and up) */
  44. @media (max-width: 992px) {
  45. }
  46. /* Medium devices (tablets, 768px and up) */
  47. @media only screen and (max-width: 768px) {
  48. padding-left: 0;
  49. padding-right: 0;
  50. .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. }
  66. }