Skip to content

Commit

Permalink
more overrides and responsive day view table
Browse files Browse the repository at this point in the history
  • Loading branch information
qreeves committed Apr 19, 2018
1 parent 1376b4d commit 67d0f33
Show file tree
Hide file tree
Showing 5 changed files with 343 additions and 166 deletions.
148 changes: 122 additions & 26 deletions bits/css/common.css
Original file line number Diff line number Diff line change
Expand Up @@ -161,19 +161,23 @@ a:hover, a:active {
}
button, input, button, select, textarea {
color: rgb(255, 255, 255);
background-color: rgb(0, 0, 32);
border-color: rgb(0, 0, 192);
background-color: rgb(0, 0, 48);
border: 2px solid rgb(0, 0, 192);
border-radius: 4px;
}
input[type="text"], input[type="submit"] {
padding: 2px 6px 2px 6px;
padding: 0px 6px 0px 6px;
}
input[type="radio"], input[type="checkbox"] {
visibility: hidden;
}
.radiobox {
display: inline-block;
display: inline;
position: relative;
padding-right: 4px;
padding-left: 8px;
cursor: pointer;
font-size: 14px;
margin-left: 8px;
padding-right: 0px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
Expand All @@ -184,12 +188,74 @@ input[type="text"], input[type="submit"] {
}
.radiomark {
position: absolute;
top: 2px;
left: 0;
height: 16px;
width: 16px;
top: 0px;
left: 0px;
height: 18px;
width: 18px;
background-color: rgb(0, 0, 128);
border-radius: 50%;
border: 2px solid rgb(0, 0, 192);
border-radius: 10%;
}
.radiomark#value-0 {
background-color: rgb(128, 128, 128);
border: 2px solid rgb(192, 192, 192);
}
.radiomark#value-1 {
background-color: rgb(192, 0, 0);
border: 2px solid rgb(255, 0, 0);
}
.radiomark#value-2 {
background-color: rgb(192, 64, 0);
border: 2px solid rgb(255, 64, 0);
}
.radiomark#value-3 {
background-color: rgb(192, 192, 0);
border: 2px solid rgb(255, 255, 0);
}
.radiomark#value-4 {
background-color: rgb(64, 192, 0);
border: 2px solid rgb(64, 255, 0);
}
.radiomark#value-5 {
background-color: rgb(64, 192, 192);
border: 2px solid rgb(64, 255, 255);
}
.radiomark#value-6 {
background-color: rgb(64, 128, 192);
border: 2px solid rgb(64, 128, 255);
}
.radiomark#value-7 {
background-color: rgb(64, 64, 192);
border: 2px solid rgb(64, 64, 255);
}
.radiomark#value-8 {
background-color: rgb(192, 64, 192);
border: 2px solid rgb(192, 64, 255);
}
.radiomark#value-9 {
background-color: rgb(192, 128, 192);
border: 2px solid rgb(255, 128, 255);
}
.radiomark#value-10 {
background-color: rgb(192, 96, 96);
border: 2px solid rgb(255, 128, 128);
}
.radiomark:after {
content: "";
position: absolute;
display: none;
}
.radiobox input:checked ~ .radiomark:after {
display: block;
}
.radiobox .radiomark:after {
top: 2px;
left: 2px;
width: 10px;
height: 10px;
border: 1px solid rgb(192, 192, 192);
border-radius: 10%;
background: rgb(255, 255, 255);
}
.radiobox:hover input ~ .radiomark {
background-color: rgb(0, 0, 192);
Expand All @@ -200,22 +266,57 @@ input[type="text"], input[type="submit"] {
.radiobox:hover input:checked ~ .radiomark {
background-color: rgb(0, 0, 192);
}
.radiomark:after {
.checkbox {
display: inline;
position: relative;
cursor: pointer;
font-size: 14px;
margin-left: 8px;
padding-right: 8px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.checkbox input {
opacity: 0;
}
.checkmark {
position: absolute;
top: 2px;
left: 0px;
height: 18px;
width: 18px;
background-color: rgb(0, 0, 128);
border: 2px solid rgb(0, 0, 192);
border-radius: 10%;
}
.checkmark:after {
content: "";
position: absolute;
display: none;
}
.radiobox input:checked ~ .radiomark:after {
.checkbox input:checked ~ .checkmark:after {
display: block;
}
.radiobox .radiomark:after {
top: 3px;
left: 3px;
.checkbox .checkmark:after {
top: 2px;
left: 2px;
width: 10px;
height: 10px;
border-radius: 50%;
border: 1px solid rgb(192, 192, 192);
border-radius: 10%;
background: rgb(255, 255, 255);
}
.checkbox:hover input ~ .checkmark {
background-color: rgb(0, 0, 192);
}
.checkbox input:checked ~ .checkmark {
background-color: rgb(0, 0, 128);
}
.checkbox:hover input:checked ~ .checkmark {
background-color: rgb(0, 0, 192);
}
.nowrap-text {
white-space: nowrap;
margin-right: 2px;
Expand Down Expand Up @@ -278,21 +379,19 @@ input[type="text"], input[type="submit"] {
}
@media screen and (max-width: 1024px) {
.hide-small {
border-collapse: collapse;
visibility: hidden;
display: none;
width: 0px;
height: 0px;
}
}
@media screen and (max-width: 800px) {
.hide-small {
display: none;
}
.footer {
font-size: 13px;
}
}
@media screen and (max-width: 560px) {
.hide-small {
display: none;
}
.footer {
font-size: 12px;
}
Expand All @@ -301,9 +400,6 @@ input[type="text"], input[type="submit"] {
body {
font-size: 12px;
}
.hide-small {
display: none;
}
.footer {
font-size: 10px;
}
Expand Down
16 changes: 9 additions & 7 deletions exist.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ table, thead, tr, td {
border: 0px;
}
.exist-bg1, #exist-h-row {
background-color: rgba(0, 0, 0, 0.25);
background-color: rgba(0, 0, 8, 0.4);
}
.exist-bg2, #exist-data-info, #exist-title-row, #exist-chart-info, #exist-attr-row, #exist-l-row, #exist-h-load, #exist-t-load, #exist-h-more, #exist-data-xtra {
background-color: rgba(0, 0, 0, 0.75);
background-color: rgba(0, 0, 8, 0.8);
}
.exist-center {
text-align: center;
Expand All @@ -22,8 +22,8 @@ table, thead, tr, td {
padding: 0px 4px 2px 4px;
font-size: 75%;
white-space: nowrap;
border-radius: 4px;
border: 1px solid rgb(255, 255, 255);
border-radius: 4px;
vertical-align: top;
}
.exist-icon {
Expand All @@ -41,8 +41,9 @@ canvas {
#exist-front, #exist-table, #exist-view, #exist-more {
width: 100%;
max-width: 100%;
border-collapse: separate;
border: 2px solid rgb(16, 16, 96);
border-radius: 4px;
border: 1px solid rgb(32, 32, 128);
vertical-align: middle;
margin-bottom: 16px;
}
Expand All @@ -69,7 +70,8 @@ canvas {
#exist-data-avatar img, #exist-login img {
width: 20px;
height: 20px;
border: 1px solid rgb(128, 128, 255);
border: 1px solid rgb(32, 32, 192);
border-radius: 4px;
-webkit-filter: drop-shadow( -1px -1px 5px rgb(0, 0, 255));
filter: drop-shadow(-1px -1px 5px rgb(0, 0, 255));
}
Expand All @@ -95,7 +97,7 @@ canvas {
color: rgb(240, 240, 255);
text-shadow: -1px -1px 4px rgb(0, 0, 255);
}
#exist-inner-row > th {
#exist-inner-row > th, #exist-inner-finish > th, #exist-inner-submit > th {
color: rgb(240, 240, 255);
text-shadow: -1px -1px 4px rgb(0, 0, 255);
font-weight: 600;
Expand All @@ -114,4 +116,4 @@ canvas {
margin-top: 4px;
font-size: 14px;
font-weight: 600;
}
}
Loading

0 comments on commit 67d0f33

Please sign in to comment.