index.css 620 B

12345678910111213141516171819202122232425262728293031323334
  1. .tile {
  2. background-color: #279fe0;
  3. border-radius: 3px;
  4. color: #ffffff;
  5. margin-bottom: 15px;
  6. transition: all 1s ease 0s;
  7. }
  8. .tile-heading {
  9. background-color: #1e91cf;
  10. color: #fff;
  11. padding: 5px 8px;
  12. text-transform: uppercase;
  13. }
  14. .tile .tile-heading .pull-right {
  15. opacity: 0.7;
  16. transition: all 1s ease 0s;
  17. }
  18. .tile-body {
  19. color: #ffffff;
  20. line-height: 48px;
  21. padding: 15px;
  22. }
  23. .tile .tile-body i {
  24. font-size: 50px;
  25. opacity: 0.3;
  26. transition: all 1s ease 0s;
  27. }
  28. .tile-footer {
  29. background-color: #3da9e3;
  30. padding: 5px 8px;
  31. }
  32. .tile a {
  33. color: #ffffff;
  34. }