LedBars/RpiLedBars/web/index.css

80 lines
1.2 KiB
CSS
Raw Normal View History

2021-09-30 16:58:56 +02:00
html,
body,
.page {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
2021-09-29 23:56:10 +02:00
body {
background: #434d5a;
font-family: "Roboto";
}
2021-09-30 16:58:56 +02:00
.page {
top: 0px;
left: 0px;
}
.window {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background: rgba(0, 0, 0, 1);
padding: 1em;
}
2021-09-29 23:56:10 +02:00
h1 {
color: #7e8c9f;
2021-09-30 16:58:56 +02:00
font-size: 50px;
margin: 2em 0px;
padding: 0px;
2021-09-29 23:56:10 +02:00
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: default;
text-align: center;
}
2021-09-30 16:58:56 +02:00
h1 {
text-align: center;
}
h1 #enc {
font-size: 80px;
font-weight: bold;
}
2021-09-29 23:56:10 +02:00
#picker {
display: flex;
justify-content: space-around;
}
.IroColorPicker {
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-content: center;
justify-content: space-around;
2021-09-30 16:58:56 +02:00
}
#reconnect {
position: fixed;
visibility: hidden;
background: rgba(0, 0, 0, .5);
z-index: 2;
display: flex;
justify-content: center;
align-items: center;
}
#reconnect .window div {
color: rgb(165, 165, 165);
font-family: monospace;
font-size: 2em;
font-weight: bold;
margin-bottom: .5em;
2021-09-29 23:56:10 +02:00
}