2022-10-29 01:14:08 -04:00
|
|
|
$tab-bar-height: 50px
|
|
|
|
|
2023-04-07 00:12:29 -04:00
|
|
|
$primary-color: #009688
|
|
|
|
$primary-color-light: lighten($primary-color, 10%)
|
|
|
|
$primary-color-dark: darken($primary-color, 10%)
|
|
|
|
|
|
|
|
$default-transition: all 230ms ease-in-out
|
|
|
|
|
2022-05-25 14:28:19 -04:00
|
|
|
body
|
2022-10-29 01:14:08 -04:00
|
|
|
margin: 0
|
2022-10-31 14:38:34 -04:00
|
|
|
padding: $tab-bar-height 0 90px
|
2022-05-25 14:28:19 -04:00
|
|
|
background: white
|
2022-08-23 19:13:49 -04:00
|
|
|
font-size: 18px
|
2022-05-25 14:28:19 -04:00
|
|
|
|
|
|
|
a
|
2023-04-07 00:12:29 -04:00
|
|
|
color: $primary-color
|
|
|
|
transition: $default-transition
|
2022-05-25 14:28:19 -04:00
|
|
|
|
|
|
|
&:hover
|
2023-04-07 00:12:29 -04:00
|
|
|
color: $primary-color-light
|
2022-05-25 14:28:19 -04:00
|
|
|
|
|
|
|
input
|
2023-04-07 00:12:29 -04:00
|
|
|
transition: $default-transition
|
2022-05-25 14:28:19 -04:00
|
|
|
|
|
|
|
input[type=submit],
|
|
|
|
button
|
|
|
|
background-color: cornflowerblue
|
|
|
|
color: #f0f0f0
|
2023-04-07 00:12:29 -04:00
|
|
|
transition: $default-transition
|
2022-05-25 14:28:19 -04:00
|
|
|
|
|
|
|
&:hover
|
|
|
|
background-color: darken(cornflowerblue, 10%)
|
|
|
|
color: white
|
|
|
|
|
2022-08-23 19:13:49 -04:00
|
|
|
.faded-text
|
|
|
|
color: #999
|
|
|
|
|
2022-05-25 14:28:19 -04:00
|
|
|
.u-text-center
|
|
|
|
text-align: center
|
|
|
|
|
|
|
|
.container
|
|
|
|
max-width: 1024px
|
|
|
|
|
|
|
|
.container.fluid
|
|
|
|
max-width: 100%
|
2022-10-29 01:14:08 -04:00
|
|
|
margin: 0
|
|
|
|
|
|
|
|
#wrapper
|
|
|
|
margin-top: 25px
|
|
|
|
|
|
|
|
#tab-bar
|
|
|
|
position: fixed
|
|
|
|
top: 0
|
|
|
|
left: 0
|
|
|
|
z-index: 10
|
|
|
|
width: 100%
|
|
|
|
height: $tab-bar-height
|
|
|
|
margin: 0
|
|
|
|
padding: 0
|
|
|
|
background: #eee
|
|
|
|
border-bottom: 1px solid #bbb
|
|
|
|
box-shadow: 0 1px 2px rgba(0, 0, 0, .25)
|
|
|
|
|
|
|
|
.row
|
|
|
|
display: relative
|
|
|
|
|
|
|
|
.tab-button
|
|
|
|
float: left
|
|
|
|
height: 50px
|
|
|
|
margin: 0
|
|
|
|
background-color: #eee
|
|
|
|
border: none
|
|
|
|
border-right: 1px solid #999
|
|
|
|
border-radius: 0
|
|
|
|
color: #212121
|
|
|
|
font-size: 2rem
|
|
|
|
font-weight: bold
|
2023-04-07 00:12:29 -04:00
|
|
|
transition: $default-transition
|
2022-10-29 01:14:08 -04:00
|
|
|
|
2023-04-07 00:12:29 -04:00
|
|
|
&.active,
|
|
|
|
&:hover
|
2022-10-29 01:14:08 -04:00
|
|
|
background-color: white
|
2022-05-25 14:28:19 -04:00
|
|
|
|
2022-10-28 01:06:09 -04:00
|
|
|
.component-display
|
|
|
|
display: none
|
|
|
|
&.active
|
|
|
|
display: block
|
|
|
|
|
2022-05-25 16:23:42 -04:00
|
|
|
.pageLink
|
|
|
|
text-decoration: none
|
|
|
|
i
|
|
|
|
font-size: 10rem
|
|
|
|
p
|
|
|
|
margin-top: 10px
|
|
|
|
color: #212121
|
|
|
|
font-size: 2.5rem
|
|
|
|
text-decoration: none
|
|
|
|
|
2022-08-23 19:13:49 -04:00
|
|
|
table.hardware-info
|
|
|
|
border-spacing: 0
|
|
|
|
padding: 8px
|
|
|
|
border: 1px solid #999
|
|
|
|
td
|
|
|
|
border: none
|
|
|
|
td:not(:nth-child(2))
|
|
|
|
border-right: 1px solid #bbb
|
|
|
|
tr:not(:last-child) td
|
|
|
|
border-bottom: 1px solid #bbb
|
|
|
|
|
2022-06-08 00:46:56 -04:00
|
|
|
.tempGauge
|
|
|
|
position: relative
|
|
|
|
box-sizing: border-box
|
|
|
|
width: 100%
|
|
|
|
max-width: 175px
|
|
|
|
height: 300px
|
|
|
|
margin-left: auto
|
|
|
|
margin-right: auto
|
|
|
|
border: 4px solid #212121
|
2022-06-08 22:46:56 -04:00
|
|
|
background: rgb(61,191,37)
|
|
|
|
background: linear-gradient(0deg, rgba(61,191,37,1) 45%, rgba(253,255,2,1) 65%, rgba(253,255,2,1) 75%, rgba(253,45,45,1) 100%)
|
2022-06-08 00:46:56 -04:00
|
|
|
|
|
|
|
.tempGaugeFill
|
|
|
|
display: block
|
|
|
|
position: absolute
|
|
|
|
left: 0
|
2022-06-08 22:46:56 -04:00
|
|
|
top: 0
|
2022-06-08 00:46:56 -04:00
|
|
|
box-sizing: border-box
|
|
|
|
width: 100%
|
|
|
|
height: 0
|
2022-06-08 22:46:56 -04:00
|
|
|
background: white
|
2022-06-08 00:46:56 -04:00
|
|
|
|
2022-05-25 14:28:19 -04:00
|
|
|
#header h1
|
|
|
|
text-align: center
|
|
|
|
|
|
|
|
#footer
|
|
|
|
position: fixed
|
|
|
|
left: 0
|
|
|
|
right: 0
|
|
|
|
bottom: 0
|
|
|
|
padding-top: 25px
|
|
|
|
padding-bottom: 25px
|
2022-10-31 14:38:34 -04:00
|
|
|
background: white
|
2022-05-25 14:28:19 -04:00
|
|
|
border-top: 1px solid #999
|
2022-08-23 19:13:49 -04:00
|
|
|
font-size: 16px
|
2022-05-25 14:28:19 -04:00
|
|
|
|
|
|
|
.row
|
|
|
|
position: relative
|
|
|
|
|
|
|
|
p.no-margin
|
|
|
|
margin-bottom: 0
|
2022-05-26 22:28:59 -04:00
|
|
|
|
2023-04-07 00:12:29 -04:00
|
|
|
p#version-info
|
|
|
|
text-decoration: underline
|
|
|
|
|
2022-05-26 22:28:59 -04:00
|
|
|
#systemPages
|
|
|
|
> div:nth-child(2n + 3)
|
|
|
|
margin-left: 0
|