styles.scss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. /* You can add global styles to this file, and also import other style files */
  2. @import url("https://use.fontawesome.com/releases/v5.1.0/css/all.css");
  3. @import "~@progress/kendo-theme-bootstrap/scss/all";
  4. h1 {
  5. color: magenta;
  6. border-bottom: 4px blueviolet solid;
  7. margin-bottom: 1em;
  8. }
  9. .form-group {
  10. margin-bottom: 4px;
  11. }
  12. div.col-sm-8 {
  13. margin-bottom: 2px;
  14. }
  15. label.col-sm-4 {
  16. background-color: lavenderblush;
  17. border-left: 15px white solid;
  18. padding-top: 4px;
  19. margin-bottom: 2px;
  20. }
  21. div.col-sm-8 {
  22. label {
  23. font-size: 0.85em;
  24. }
  25. textarea {
  26. margin-bottom: 5px;
  27. }
  28. }
  29. .red input {
  30. color: rgb(202, 28, 28) !important;
  31. }
  32. .bgPaleBlue input {
  33. background-color: rgb(230, 243, 243) !important;
  34. }
  35. #yoyo {
  36. input {
  37. border-color: purple;
  38. border-width: 2px;
  39. width: 50%;
  40. }
  41. }
  42. // ---------------------------------------------------------------------------------------------------------------------
  43. // Input styles
  44. .timepicker {
  45. display: inline-block;
  46. max-width: 140px;
  47. }
  48. .datepicker {
  49. display: inline-block;
  50. max-width: 165px;
  51. }
  52. .ng-touched.ng-invalid {
  53. input[type=text]#{&},
  54. input[type=password]#{&},
  55. textarea#{&},
  56. select#{&}
  57. {
  58. border-left: 3px red solid;
  59. }
  60. }
  61. // ---------------------------------------------------------------------------------------------------------------------
  62. // FormGroup Heading Styles
  63. .h-dyna-2 {
  64. font-size: 1.5em;
  65. }
  66. .h-dyna-3 {
  67. font-size: 1.25em;
  68. }
  69. .h-dyna-4 {
  70. font-size: 1.1em;
  71. }
  72. // ---------------------------------------------------------------------------------------------------------------------
  73. // Button Groups
  74. .buttongroup a {
  75. margin-right: 4px;
  76. }
  77. // ---------------------------------------------------------------------------------------------------------------------
  78. // Repeating Comtainers (series of buttons alowwing user to focus a repeating container member)
  79. .dyna-repeating-container-selector {
  80. margin-bottom: 5px;
  81. a.btn {
  82. margin-right: 4px;
  83. }
  84. .btn-primary {
  85. color: white !important;
  86. }
  87. }
  88. .dyna-rc-container.dyna-rc-display-all, .dyna-rc-control.dyna-rc-display-all {
  89. margin-bottom: 7px;
  90. border-bottom: 4px #CCC solid;
  91. }
  92. .dyna-hidden {
  93. display: none;
  94. }
  95. // ---------------------------------------------------------------------------------------------------------------------
  96. // Errors
  97. .dyna-error label.col-sm-4 {
  98. span {
  99. display: inline-block;
  100. margin-left: 0.5em;
  101. color: red;
  102. }
  103. }