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.

desktop.css 1.4 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. #icon-grid {
  2. padding-bottom: 30px;
  3. }
  4. .case-wrapper {
  5. position: relative;
  6. margin: 12px;
  7. float: left;
  8. width: 100px;
  9. height: 100px;
  10. }
  11. .case-label {
  12. color: white;
  13. padding-top: 5px;
  14. text-align: center;
  15. text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
  16. }
  17. @media (max-width: 768px) {
  18. .case-wrapper {
  19. margin: 12px;
  20. width: 70px;
  21. height: 80px;
  22. }
  23. .case-label {
  24. padding-top: 2px;
  25. font-size: 85%;
  26. }
  27. }
  28. /* Hover and click effects */
  29. .app-icon:hover, .hover-effect {
  30. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.2);
  31. -o-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.2);
  32. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.2);
  33. }
  34. .app-icon:active, .app-icon:focus, .case-border-click {
  35. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.3);
  36. -o-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.3);
  37. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.3);
  38. transform: scale(0.98, 0.98);
  39. -ms-transform: scale(0.98, 0.98); /* IE 9 */
  40. -webkit-transform: scale(0.98, 0.98); /* Safari and Chrome */
  41. -o-transform: scale(0.98, 0.98); /* Opera */
  42. -moz-transform: scale(0.98, 0.98); /* Firefox */
  43. }
  44. .circle {
  45. position: absolute;
  46. top: -10px;
  47. right: 5px;
  48. border-radius: 30px;
  49. -moz-border-radius: 30px;
  50. -webkit-border-radius: 30px;
  51. line-height: 12px;
  52. background: #e74c3c;
  53. padding: 7px;
  54. z-index: 5;
  55. }
  56. .circle-text {
  57. color: white;
  58. display: inline-block;
  59. min-width: 15px;
  60. }