| Michael Davis | aeedf9e | 2017-04-06 14:35:56 -0500 | [diff] [blame] | 1 | @mixin state-label { |
| 2 | text-transform: uppercase; | ||||
| 3 | font-weight: 700; | ||||
| 4 | font-size: .8em; | ||||
| 5 | } | ||||
| 6 | |||||
| 7 | $title-minWidth: 210px; | ||||
| 8 | |||||
| Iftekharul Islam | 8947e70 | 2017-07-27 10:28:07 -0500 | [diff] [blame] | 9 | .header__actions-bar { |
| 10 | padding-left: 1.5em; | ||||
| Iftekharul Islam | 97280b3 | 2018-11-16 14:50:22 -0600 | [diff] [blame] | 11 | padding-right: 1em; |
| Michael Davis | aeedf9e | 2017-04-06 14:35:56 -0500 | [diff] [blame] | 12 | font-weight: 700; |
| Iftekharul Islam | 97280b3 | 2018-11-16 14:50:22 -0600 | [diff] [blame] | 13 | .sensor__title { |
| 14 | margin-left: 1.5em; | ||||
| 15 | } | ||||
| Iftekharul Islam | 0805441 | 2017-08-25 10:29:57 -0500 | [diff] [blame] | 16 | .sensor__reading { |
| Iftekharul Islam | 97280b3 | 2018-11-16 14:50:22 -0600 | [diff] [blame] | 17 | margin-right: .2em; |
| Iftekharul Islam | 0805441 | 2017-08-25 10:29:57 -0500 | [diff] [blame] | 18 | } |
| Iftekharul Islam | 8947e70 | 2017-07-27 10:28:07 -0500 | [diff] [blame] | 19 | .sensor__heading-current { |
| 20 | padding-right: 1em; | ||||
| Michael Davis | aeedf9e | 2017-04-06 14:35:56 -0500 | [diff] [blame] | 21 | } |
| 22 | } | ||||
| 23 | |||||
| Iftekharul Islam | 8947e70 | 2017-07-27 10:28:07 -0500 | [diff] [blame] | 24 | .sensor__heading-current { |
| 25 | margin: 0; | ||||
| 26 | @include mediaQuery(medium) { | ||||
| 27 | margin-left: 10px; | ||||
| 28 | margin-right: 10px; | ||||
| 29 | } | ||||
| Michael Davis | aeedf9e | 2017-04-06 14:35:56 -0500 | [diff] [blame] | 30 | } |
| 31 | |||||
| Iftekharul Islam | 8947e70 | 2017-07-27 10:28:07 -0500 | [diff] [blame] | 32 | .sensor__label { |
| 33 | float: left; | ||||
| 34 | font-weight: 300; | ||||
| 35 | @include mediaQuery(medium) { | ||||
| 36 | display: none; | ||||
| 37 | } | ||||
| 38 | } | ||||
| 39 | |||||
| Gunnar Mills | 615a2f8 | 2019-04-17 14:30:39 -0500 | [diff] [blame] | 40 | .sensor__title { |
| 41 | min-width: 28%; | ||||
| 42 | margin-bottom: 0; | ||||
| 43 | } | ||||
| 44 | |||||
| 45 | .sensor__reading { | ||||
| 46 | width: 100%; | ||||
| 47 | text-align: right; | ||||
| 48 | margin-bottom: 0; | ||||
| 49 | display: none; | ||||
| 50 | @include mediaQuery(medium) { | ||||
| 51 | display: inline-block; | ||||
| 52 | width: auto; | ||||
| 53 | min-width: calc(70% * (1 / 5) - 18px); | ||||
| 54 | } | ||||
| 55 | } | ||||
| 56 | |||||
| 57 | .sensor__readings-row { | ||||
| 58 | width: 100%; | ||||
| 59 | position: relative; | ||||
| 60 | display: block; | ||||
| Iftekharul Islam | 8947e70 | 2017-07-27 10:28:07 -0500 | [diff] [blame] | 61 | margin: 0; |
| 62 | background: $white; | ||||
| 63 | text-decoration: none; | ||||
| 64 | border: 1px solid $medgrey; | ||||
| 65 | background: lighten($lightgrey,1%); | ||||
| Gunnar Mills | 615a2f8 | 2019-04-17 14:30:39 -0500 | [diff] [blame] | 66 | margin-top: 1em; |
| Iftekharul Islam | 8947e70 | 2017-07-27 10:28:07 -0500 | [diff] [blame] | 67 | @include mediaQuery(medium) { |
| Gunnar Mills | 615a2f8 | 2019-04-17 14:30:39 -0500 | [diff] [blame] | 68 | padding: .3em 1em .3em 1.5em; |
| Iftekharul Islam | 8947e70 | 2017-07-27 10:28:07 -0500 | [diff] [blame] | 69 | margin-top: 0; |
| 70 | border-top: 0; | ||||
| 71 | background: transparent; | ||||
| 72 | } | ||||
| Iftekharul Islam | 8947e70 | 2017-07-27 10:28:07 -0500 | [diff] [blame] | 73 | .sensor__title { |
| Michael Davis | aeedf9e | 2017-04-06 14:35:56 -0500 | [diff] [blame] | 74 | font-weight: 700; |
| Iftekharul Islam | 8947e70 | 2017-07-27 10:28:07 -0500 | [diff] [blame] | 75 | background: darken($lightgrey, 5%); |
| Gunnar Mills | 615a2f8 | 2019-04-17 14:30:39 -0500 | [diff] [blame] | 76 | min-width: 100%; |
| 77 | padding: .8em; | ||||
| Iftekharul Islam | 8947e70 | 2017-07-27 10:28:07 -0500 | [diff] [blame] | 78 | @include mediaQuery(medium) { |
| Gunnar Mills | 615a2f8 | 2019-04-17 14:30:39 -0500 | [diff] [blame] | 79 | min-width: 30%; |
| Iftekharul Islam | 8947e70 | 2017-07-27 10:28:07 -0500 | [diff] [blame] | 80 | background: transparent; |
| Gunnar Mills | 615a2f8 | 2019-04-17 14:30:39 -0500 | [diff] [blame] | 81 | padding: .5em .5em .5em 0; |
| 82 | } | ||||
| 83 | .icon__normal { | ||||
| 84 | width: 0; | ||||
| Iftekharul Islam | 0805441 | 2017-08-25 10:29:57 -0500 | [diff] [blame] | 85 | } |
| Iftekharul Islam | 8947e70 | 2017-07-27 10:28:07 -0500 | [diff] [blame] | 86 | } |
| Gunnar Mills | 615a2f8 | 2019-04-17 14:30:39 -0500 | [diff] [blame] | 87 | .content-label { |
| 88 | font-size: 1em; | ||||
| 89 | margin-left: .8em; | ||||
| 90 | color: $darkgrey; | ||||
| 91 | } | ||||
| 92 | .sensor__reading { | ||||
| 93 | @include fontCourierBold; | ||||
| Iftekharul Islam | 8947e70 | 2017-07-27 10:28:07 -0500 | [diff] [blame] | 94 | display: block; |
| Gunnar Mills | 615a2f8 | 2019-04-17 14:30:39 -0500 | [diff] [blame] | 95 | padding: .3em .8em; |
| Iftekharul Islam | 8947e70 | 2017-07-27 10:28:07 -0500 | [diff] [blame] | 96 | @include mediaQuery(medium) { |
| 97 | display: inline-block; | ||||
| Gunnar Mills | 615a2f8 | 2019-04-17 14:30:39 -0500 | [diff] [blame] | 98 | padding: 0; |
| Iftekharul Islam | 8947e70 | 2017-07-27 10:28:07 -0500 | [diff] [blame] | 99 | } |
| 100 | } | ||||
| Gunnar Mills | 615a2f8 | 2019-04-17 14:30:39 -0500 | [diff] [blame] | 101 | .sensor__current { |
| 102 | background: darken($thresh-normal, 3%); | ||||
| 103 | margin: 0; | ||||
| Iftekharul Islam | 8947e70 | 2017-07-27 10:28:07 -0500 | [diff] [blame] | 104 | @include mediaQuery(medium) { |
| Gunnar Mills | 615a2f8 | 2019-04-17 14:30:39 -0500 | [diff] [blame] | 105 | background: $thresh-normal; |
| 106 | padding: .7em .3em; | ||||
| 107 | margin-left: 10px; | ||||
| 108 | min-width: 109px; | ||||
| 109 | } | ||||
| 110 | @include mediaQuery(large) { | ||||
| 111 | background: $thresh-normal; | ||||
| 112 | padding: .7em; | ||||
| 113 | margin-left: .3em; | ||||
| 114 | margin-right: .3em; | ||||
| 115 | min-width: 150px; | ||||
| 116 | } | ||||
| 117 | .sensor__label { | ||||
| 118 | font-weight: 700; | ||||
| 119 | @include mediaQuery(medium) { | ||||
| 120 | font-weight:300; | ||||
| 121 | } | ||||
| Iftekharul Islam | 8947e70 | 2017-07-27 10:28:07 -0500 | [diff] [blame] | 122 | } |
| 123 | } | ||||
| Gunnar Mills | 615a2f8 | 2019-04-17 14:30:39 -0500 | [diff] [blame] | 124 | .sensor__critical { |
| Iftekharul Islam | 8947e70 | 2017-07-27 10:28:07 -0500 | [diff] [blame] | 125 | background: $thresh-critical; |
| 126 | color: $white; | ||||
| 127 | .content-label { | ||||
| 128 | color: $white; | ||||
| 129 | } | ||||
| 130 | } | ||||
| Gunnar Mills | 615a2f8 | 2019-04-17 14:30:39 -0500 | [diff] [blame] | 131 | .sensor__warn { |
| Iftekharul Islam | 8947e70 | 2017-07-27 10:28:07 -0500 | [diff] [blame] | 132 | background: $thresh-warning; |
| 133 | color: $black; | ||||
| 134 | .content-label { | ||||
| Michael Davis | aeedf9e | 2017-04-06 14:35:56 -0500 | [diff] [blame] | 135 | color: $black; |
| 136 | } | ||||
| Michael Davis | aeedf9e | 2017-04-06 14:35:56 -0500 | [diff] [blame] | 137 | } |
| Gunnar Mills | 615a2f8 | 2019-04-17 14:30:39 -0500 | [diff] [blame] | 138 | |
| Michael Davis | aeedf9e | 2017-04-06 14:35:56 -0500 | [diff] [blame] | 139 | } |
| 140 | |||||
| 141 | // Sensors | ||||
| Gunnar Mills | 615a2f8 | 2019-04-17 14:30:39 -0500 | [diff] [blame] | 142 | |
| Michael Davis | aeedf9e | 2017-04-06 14:35:56 -0500 | [diff] [blame] | 143 | #sensors, #sensors-overview { |
| Gunnar Mills | 615a2f8 | 2019-04-17 14:30:39 -0500 | [diff] [blame] | 144 | |
| Michael Davis | aeedf9e | 2017-04-06 14:35:56 -0500 | [diff] [blame] | 145 | .toggle-filter { |
| Iftekharul Islam | 97280b3 | 2018-11-16 14:50:22 -0600 | [diff] [blame] | 146 | margin-bottom: 20px; |
| 147 | } | ||||
| 148 | .column, .columns { | ||||
| 149 | padding-left: 0px; | ||||
| 150 | padding-right: 0px; | ||||
| Michael Davis | aeedf9e | 2017-04-06 14:35:56 -0500 | [diff] [blame] | 151 | } |
| 152 | } | ||||
| 153 | |||||
| Gunnar Mills | 84e114a | 2018-11-14 13:44:41 -0600 | [diff] [blame] | 154 | //end sensor details |