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.

29 lines
829 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: 0px 0px 0px 3px rgba(255, 255, 255, 0.6) inset, 0px 1px 1px rgba(0, 0, 0, 0.3);
  18. -moz-box-shadow: 0px 0px 0px 3px rgba(255, 255, 255, 0.6) inset, 0px 1px 1px rgba(0, 0, 0, 0.3);
  19. box-shadow: 0px 0px 0px 3px rgba(255, 255, 255, 0.6) inset, 0px 1px 1px rgba(0, 0, 0, 0.3);
  20. z-index: 10;
  21. }
  22. /* Rounded Corners */
  23. .ui.feature.image,
  24. .ui.feature.image img,
  25. .ui.feature.image:after {
  26. -webkit-border-radius: 5px;
  27. -moz-border-radius: 5px;
  28. border-radius: 5px;
  29. }