styles.css 689 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. body {
  2. min-width: 420px;
  3. }
  4. /* chips */
  5. .chip {
  6. display: inline-block;
  7. padding: 0 10px;
  8. height: 30px;
  9. font-size: 16px;
  10. /*line-height: 50px;*/
  11. border-radius: 15px;
  12. background-color: #f1f1f1;
  13. }
  14. .closebtn {
  15. padding-left: 10px;
  16. color: #888;
  17. font-weight: bold;
  18. float: right;
  19. font-size: 20px;
  20. cursor: pointer;
  21. }
  22. /* input groups */
  23. .closebtn:hover {
  24. color: #000;
  25. }
  26. .fixed-label {
  27. width: 11rem;
  28. }
  29. .text-break {
  30. word-wrap: break-word;
  31. }
  32. /* buttons */
  33. .btn-right {
  34. width: 10rem;
  35. }
  36. /* dialog */
  37. .dialog {
  38. justify-content: center !important;
  39. }
  40. /* widths */
  41. .w-20 {
  42. width: 20%;
  43. }
  44. .w-40 {
  45. width: 40%;
  46. }
  47. .w-60 {
  48. width: 60%;
  49. }
  50. .w-80 {
  51. width: 80%;
  52. }