main.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. body{
  2. margin:0px;
  3. font-family: sans-serif;
  4. font-size: 12px;
  5. }
  6. #app{
  7. background: whitesmoke;
  8. width: 705px;
  9. height: 715px;
  10. }
  11. .spacing {
  12. height: 14px;
  13. margin-left: 10px;
  14. margin-right: 10px;
  15. border-right: 1px solid black;
  16. display: inline-block;
  17. /* position: relative; */
  18. }
  19. span{
  20. margin-bottom: 10px;
  21. }
  22. .row {
  23. /*display: flex;*/
  24. flex-direction: row;
  25. justify-content: space-evenly;
  26. }
  27. #tabs{
  28. height: 30px;
  29. font-size: 0px; /*Hack*/
  30. background: white;
  31. }
  32. .tab {
  33. font-size: 14px;
  34. display: inline-block;
  35. padding-top: 10px;
  36. padding-bottom: 5px;
  37. border-right: 1px solid grey;
  38. padding-right: 14px;
  39. padding-left: 14px;
  40. background: white;
  41. box-shadow: inset 0px -2px 2px 0px rgb(243, 225, 225);
  42. }
  43. .tab.active{
  44. background: whitesmoke;
  45. box-shadow: none;
  46. }
  47. #boxInformation {
  48. padding-top: 20px;
  49. padding-left: 20px;
  50. padding-right: 20px;
  51. }
  52. #graphs{
  53. height: 400px;
  54. }
  55. #longGraph, #waveformGraph{
  56. width:100%;
  57. height: 250px;
  58. margin: 10px;
  59. border: 1px solid black;
  60. }
  61. input[type="text"], input[type="number"]{
  62. width: 50px;
  63. margin-left: 10px;
  64. }
  65. input[type="text"]:disabled, input[type="number"]:disabled{
  66. background: rgba(0,0,0,0);
  67. }
  68. input[type="radio"], input[type="checkbox"]{
  69. margin-left: 10px;
  70. }
  71. .label {
  72. display: inline-block;
  73. color: rgb(115, 115, 115);
  74. font-style: italic;
  75. }