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.

79 lines
2.5 KiB

  1. /*******************************
  2. Content Well
  3. *******************************/
  4. .ui.well {
  5. display: inline-block;
  6. padding: 6px;
  7. -webkit-border-radius: 10px;
  8. -moz-border-radius: 10px;
  9. border-radius: 10px;
  10. -webkit-box-shadow:
  11. 0px -1px 0px rgba(0, 0, 0, 0.05) inset,
  12. 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset
  13. ;
  14. -moz-box-shadow:
  15. 0px -1px 0px rgba(0, 0, 0, 0.05) inset,
  16. 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset
  17. ;
  18. box-shadow:
  19. 0px -1px 0px rgba(0, 0, 0, 0.05) inset,
  20. 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset
  21. ;
  22. background-image: linear-gradient(top, rgba(80, 80, 80, 0.24) 0%, rgba(119, 119, 119, 0.24) 100%);
  23. background-image: -webkit-linear-gradient(top, rgba(80, 80, 80, 0.24) 0%, rgba(119, 119, 119, 0.24) 100%);
  24. background-image: -moz-linear-gradient(top, rgba(80, 80, 80, 0.24) 0%, rgba(119, 119, 119, 0.24) 100%);
  25. background-image: -o-linear-gradient(top, rgba(80, 80, 80, 0.24) 0%, rgba(119, 119, 119, 0.24) 100%);
  26. background-image: -ms-linear-gradient(top, rgba(80, 80, 80, 0.24) 0%, rgba(119, 119, 119, 0.24) 100%);
  27. background-image: linear-gradient(top, rgba(80, 80, 80, 0.24) 0%, rgba(119, 119, 119, 0.24) 100%);
  28. }
  29. .ui.well .button {
  30. -webkit-border-radius: 10px;
  31. -moz-border-radius: 10px;
  32. border-radius: 10px;
  33. }
  34. /* Lighter Color Well */
  35. .ui.light.well {
  36. background-image: linear-gradient(top, rgba(80, 80, 80, 0.14) 0%, rgba(119, 119, 119, 0.14) 100%);
  37. background-image: -webkit-linear-gradient(top, rgba(80, 80, 80, 0.14) 0%, rgba(119, 119, 119, 0.14) 100%);
  38. background-image: -moz-linear-gradient(top, rgba(80, 80, 80, 0.14) 0%, rgba(119, 119, 119, 0.14) 100%);
  39. background-image: -o-linear-gradient(top, rgba(80, 80, 80, 0.14) 0%, rgba(119, 119, 119, 0.14) 100%);
  40. background-image: -ms-linear-gradient(top, rgba(80, 80, 80, 0.14) 0%, rgba(119, 119, 119, 0.14) 100%);
  41. background-image: linear-gradient(top, rgba(80, 80, 80, 0.14) 0%, rgba(119, 119, 119, 0.14) 100%);
  42. }
  43. /* Shallow Well */
  44. .ui.shallow.well {
  45. -webkit-border-radius: 4px;
  46. -moz-border-radius: 4px;
  47. border-radius: 4px;
  48. padding: 4px;
  49. }
  50. .ui.shallow.well .button {
  51. border-radius: 4px;
  52. }
  53. /* Deeper Well */
  54. .ui.deep.well {
  55. -webkit-border-radius: 50px;
  56. -moz-border-radius: 50px;
  57. border-radius: 50px;
  58. padding: 10px;
  59. }
  60. .ui.deep.well .button {
  61. border-radius: 50px;
  62. }
  63. /* Fluid Width */
  64. .ui.well.fluid,
  65. .ui.well.fluid .button {
  66. width: 100%;
  67. -webkit-box-sizing: border-box;
  68. -moz-box-sizing: border-box;
  69. -ms-box-sizing: border-box;
  70. box-sizing: border-box;
  71. }