25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

91 satır
1.6 KiB

  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-border {
  12. border-radius: 5px;
  13. padding: 20px;
  14. display: inline-block;
  15. margin: auto;
  16. text-align: center;
  17. }
  18. .case-wrapper i {
  19. font-size: 32px;
  20. min-width: 32px;
  21. color: #f8f8f8;
  22. display: inline-block;
  23. }
  24. .case-label {
  25. color: white;
  26. padding-top: 5px;
  27. text-align: center;
  28. text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
  29. }
  30. @media (max-width: 768px) {
  31. .case-wrapper {
  32. margin: 12px;
  33. width: 70px;
  34. height: 80px;
  35. }
  36. .case-border {
  37. padding: 12px;
  38. }
  39. .case-label {
  40. padding-top: 2px;
  41. font-size: 85%;
  42. }
  43. }
  44. /* Hover and click effects */
  45. .case-border:hover, .hover-effect {
  46. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.2);
  47. -o-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.2);
  48. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.2);
  49. }
  50. .case-border:active, .case-border:focus, .case-border-click {
  51. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.3);
  52. -o-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.3);
  53. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.3);
  54. transform: scale(0.98, 0.98);
  55. -ms-transform: scale(0.98, 0.98); /* IE 9 */
  56. -webkit-transform: scale(0.98, 0.98); /* Safari and Chrome */
  57. -o-transform: scale(0.98, 0.98); /* Opera */
  58. -moz-transform: scale(0.98, 0.98); /* Firefox */
  59. }
  60. .circle {
  61. position: absolute;
  62. top: -10px;
  63. right: 5px;
  64. border-radius: 30px;
  65. -moz-border-radius: 30px;
  66. -webkit-border-radius: 30px;
  67. line-height: 12px;
  68. background: #e74c3c;
  69. padding: 7px;
  70. z-index: 5;
  71. }
  72. .circle-text {
  73. color: white;
  74. display: inline-block;
  75. min-width: 15px;
  76. }