projects.css 1.1 KB

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