You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
905 B

  1. .ui.feature.image {
  2. position: relative;
  3. display: inline-block;
  4. border: 1px solid #CCCCCC;
  5. background: #F5F5F5 url(../images/placeholder-subtle.png) no-repeat center center;
  6. }
  7. .ui.feature.image img {
  8. display: block;
  9. }
  10. .ui.feature.image:after {
  11. position: absolute;
  12. top: 0px;
  13. left: 0px;
  14. width: 100%;
  15. height: 100%;
  16. content: '';
  17. -webkit-box-shadow:
  18. 0px 0px 0px 3px rgba(255, 255, 255, 0.6) inset,
  19. 0px 1px 1px rgba(0, 0, 0, 0.3)
  20. ;
  21. -moz-box-shadow:
  22. 0px 0px 0px 3px rgba(255, 255, 255, 0.6) inset,
  23. 0px 1px 1px rgba(0, 0, 0, 0.3)
  24. ;
  25. box-shadow:
  26. 0px 0px 0px 3px rgba(255, 255, 255, 0.6) inset,
  27. 0px 1px 1px rgba(0, 0, 0, 0.3)
  28. ;
  29. z-index: 10;
  30. }
  31. /* Rounded Corners */
  32. .ui.feature.image,
  33. .ui.feature.image img,
  34. .ui.feature.image:after {
  35. -webkit-border-radius: 5px;
  36. -moz-border-radius: 5px;
  37. border-radius: 5px;
  38. }