Duplicate cam/proj counters

This commit is contained in:
Matt 2016-04-18 23:43:32 -04:00
parent 2887182282
commit d613f33675
2 changed files with 52 additions and 7 deletions

View File

@ -1,3 +1,8 @@
* {
cursor: default;
-webkit-touch-callout: none;
-webkit-user-select: none;
}
html, html,
body { body {
-webkit-overflow-scrolling: auto; -webkit-overflow-scrolling: auto;
@ -221,18 +226,24 @@ footer {
float: right; float: right;
} }
#counters .cam, #counters .cam,
#counters .proj { #counters_2 .cam,
#counters .proj,
#counters_2 .proj {
width: 50%; width: 50%;
padding-bottom: 25px; padding-bottom: 25px;
} }
#counters .cam label, #counters .cam label,
#counters .proj label { #counters_2 .cam label,
#counters .proj label,
#counters_2 .proj label {
text-align: center; text-align: center;
font-size: 24px; font-size: 24px;
display: block; display: block;
} }
#counters .cam input, #counters .cam input,
#counters .proj input { #counters_2 .cam input,
#counters .proj input,
#counters_2 .proj input {
background: rgba(255, 255, 255, 0.05); background: rgba(255, 255, 255, 0.05);
color: #fff; color: #fff;
padding: 6px 12px; padding: 6px 12px;
@ -243,13 +254,17 @@ footer {
font-family: monospace; font-family: monospace;
} }
#counters .cam input.changed, #counters .cam input.changed,
#counters .proj input.changed { #counters_2 .cam input.changed,
#counters .proj input.changed,
#counters_2 .proj input.changed {
color: #DAE035; color: #DAE035;
} }
#counters .cam { #counters .cam,
#counters_2 .cam {
float: left; float: left;
} }
#counters .proj { #counters .proj,
#counters_2 .proj {
float: right; float: right;
} }
#seq_scroll { #seq_scroll {
@ -454,6 +469,17 @@ button:focus {
display: inline-block; display: inline-block;
margin-right: 5px; margin-right: 5px;
} }
#overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.4);
display: none;
}
.spacer { .spacer {
margin-top: 15px; margin-top: 15px;
} }

View File

@ -39,6 +39,12 @@
} }
} }
*{
cursor: default;
-webkit-touch-callout: none;
-webkit-user-select: none;
}
html, body{ html, body{
-webkit-overflow-scrolling: auto; -webkit-overflow-scrolling: auto;
overflow-x: hidden; overflow-x: hidden;
@ -275,7 +281,7 @@ footer{
float: right; float: right;
} }
#counters{ #counters, #counters_2{
.cam,.proj{ .cam,.proj{
width: 50%; width: 50%;
padding-bottom: 25px; padding-bottom: 25px;
@ -484,6 +490,19 @@ button{
margin-right: 5px; margin-right: 5px;
} }
} }
#overlay{
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.4);
display: none;
//z-index: 1200;
}
.spacer{ .spacer{
margin-top: 15px; margin-top: 15px;
} }