reports-page.component.css 883 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. .reportPage-w {
  2. width: 100%;
  3. display: inline-block;
  4. padding: 40px 0;
  5. }
  6. .reportPage-w .report {
  7. width: 300px;
  8. display: inline-block;
  9. padding: 35px 0;
  10. margin: 20px 0;
  11. background-color: #f9f9f9;
  12. border-radius: 10px;
  13. height: 150px;
  14. border: 1px solid #bda380;
  15. transition: all 0.5s;
  16. }
  17. .reportPage-w .report:hover {
  18. background-color: #ccc;
  19. color: #00a99d;
  20. }
  21. .reportPage-w .report:hover a {
  22. color: #00a99d;
  23. }
  24. .reportPage-w .report:hover a span {
  25. color: #00a99d;
  26. }
  27. .reportPage-w .report a {
  28. text-decoration: none;
  29. color: #bda380;
  30. font-size: 20px;
  31. }
  32. .reportPage-w .report a span {
  33. display: block;
  34. color: #a08c72;
  35. }
  36. @media(max-width:767px){
  37. .reportPage-w .report{
  38. width: 100%;
  39. }
  40. }
  41. @media(min-width:767px) and (max-width:991px) {
  42. .reportPage-w .report{
  43. width: 100%;
  44. }
  45. }