projects.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. .projects .card .card-header {
  2. background-color: #f9fafc;
  3. padding: 0.7rem;
  4. padding-bottom: 0rem;
  5. }
  6. .projects .card .card-img-xs {
  7. margin-right: 0.5rem;
  8. }
  9. .card .card-header .sub-title span:nth-child(1) {
  10. float: left;
  11. }
  12. .card .card-header .sub-title span:nth-child(2) {
  13. float: right;
  14. }
  15. .projects .card .card-body {
  16. padding: 0.7rem;
  17. }
  18. .projects .card .card-header .sub-title {
  19. color: #8392a5;
  20. margin-top: 0.4rem;
  21. }
  22. .filtr-projects {
  23. padding: 1rem !important;
  24. }
  25. /* ============= Device specific fixes ======= */
  26. /* Extra small devices (portrait phones, less than 576px) */
  27. /* No media query for `xs` since this is the default in Bootstrap */
  28. /* Extra large devices (large desktops, 1200px and up) */
  29. @media (max-width: 1400px) {
  30. }
  31. @media (max-width: 1200px) {
  32. }
  33. /* Large devices (desktops, 992px and up) */
  34. @media (max-width: 992px) {
  35. }
  36. /* Medium devices (tablets, 768px and up) */
  37. @media only screen and (max-width: 768px) {
  38. }
  39. /* Small devices (landscape phones, 576px and up) */
  40. @media only screen and (max-width: 576px) {
  41. .projects .btn {
  42. margin-top: 0.3125rem;
  43. }
  44. }