styles.scss 775 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /* You can add global styles to this file, and also import other style files */
  2. @import url("https://use.fontawesome.com/releases/v5.0.6/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. div.col-sm-8 {
  10. border-top: 3px white solid;
  11. padding-top: 4px;
  12. }
  13. div.col-sm-4 {
  14. background-color: lavenderblush;
  15. border-top: 3px white solid;
  16. padding-top: 4px;
  17. margin-bottom: 3px;
  18. }
  19. div.col-sm-8 {
  20. label {
  21. font-size: 0.85em;
  22. }
  23. textarea {
  24. margin-bottom: 5px;
  25. }
  26. }
  27. .red input {
  28. color: rgb(202, 28, 28) !important;
  29. }
  30. .bgPaleBlue input {
  31. background-color: rgb(230, 243, 243) !important;
  32. }
  33. #yoyo {
  34. input {
  35. border-color: purple;
  36. border-width: 2px;
  37. width: 50%;
  38. }
  39. }