index.css 479 B

12345678910111213141516171819202122232425262728293031
  1. .carousel img {
  2. height: 100%!important;
  3. }
  4. @media (max-width: 992px) {
  5. .carousel .item {
  6. height: 400px;
  7. }
  8. }
  9. @media (max-width: 768px) {
  10. .carousel .item {
  11. height: 250px;
  12. }
  13. }
  14. @media (min-width: 992px) {
  15. .carousel .item {
  16. height: 500px;
  17. }
  18. }
  19. .navbar-default {
  20. background-color: transparent;
  21. border: 0;
  22. }
  23. .project {
  24. padding-top: 30px;
  25. text-align: center;
  26. }
  27. .project .container div a {
  28. display: block;
  29. height: 200px;
  30. background-color: skyblue;
  31. }