hatchyt
Version:
Hatch your next idea.
271 lines (270 loc) • 4.29 kB
CSS
.btn:hover {
cursor: pointer;
background-color: #3db936;
}
.btn {
position: relative;
display: inline-block;
padding: 6px 12px;
font-size: 13px;
font-weight: bold;
line-height: 20px;
color: #333;
white-space: nowrap;
cursor: pointer;
background-color: #eee;
background-image: linear-gradient(#fcfcfc, #eee);
border: 1px solid #d5d5d5;
border-radius: 3px;
margin: 1px 3px;
}
.btn.small {
font-size: 11px;
line-height: 13px;
padding: 2px;
}
.loading {
color: rgba(0,0,0,0) ;
}
.loading:before {
content: "Saving";
color: #fff;
position: absolute;
left: 14px;
}
.container {
position: relative;
padding: 6px;
}
.pin {
position: absolute;
}
.right,
.stats {
right: 0;
}
.bottom {
bottom: 0;
}
.success {
color: #fff;
text-shadow: 0 -1px 0 rgba(0,0,0,0.15);
background-color: #8add6d;
background-image: linear-gradient(#8add6d, #51bb2c);
border-color: #5ca941;
}
.center {
margin: auto;
}
/* apply a natural box layout model to all elements, but allowing components to change */
html {
box-sizing: border-box;
font-family: 'Helvetica Neue', 'Open Sans', sans-serif;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
.hidden {
display: none;
}
body {
background-color: rgba(160,158,158,0.75);
background-image: linear-gradient(to bottom right, #d3d3d3, #f0eaea);
font-family: 'Helvetica Neue', 'Open Sans', sans-serif;
margin: 0;
}
.half {
width: 50%;
}
.column {
display: inline-block;
vertical-align: top;
padding: 5px;
}
.thirty {
width: 30%;
}
.seventy {
width: 70%;
position: relative;
}
.seventy>button {
position: absolute;
right: 10px;
top: 10px;
opacity: 0;
}
.seventy>button:hover {
opacity: 1;
}
.CodeMirror {
/*border: 1px black solid*/
padding: 1px;
border-radius: 2px;
}
input {
margin: 0;
}
#rasterView {
display: none;
}
.toolbar {
width: 100%;
height: 23px;
background-color: #5db5f3;
background-image: linear-gradient(#5db5f3, #1087db);
padding: 1px 10px;
border-radius: 4px 4px 0 0;
}
.toolbar >div {
display: inline-block;
}
/*Styles for ConfigMenu*/
iframe {
border: none;
}
tr.checked {
font-weight: bolder;
}
table.someThings td input {
margin-right: 0.5em;
}
table.someThings td,
table.someThings th {
padding: 2px 10px;
}
table.someThings label {
margin-bottom: 0;
}
.closed>table,
.closed>button {
display: none;
}
.thingList button {
display: none;
}
.thingList {
position: relative;
}
.thingList>table {
z-index: 99;
color: #f3f3f3;
position: absolute;
padding: 50px;
border-radius: 4px;
left: -15%;
background-color: rgba(118,118,118,0.88);
box-shadow: 2px 3px 7px 2px rgba(188,188,188,0.69);
min-width: 200px;
}
.thingList>button {
position: absolute;
top: calc(100% + 5px);
left: 5px;
}
.text-center {
text-align: center;
}
.spacer {
width: 12px;
height: 1px;
display: inline-block;
display: none;
}
.icon-trashcan {
visibility: hidden;
cursor: pointer;
}
tr:hover .icon-trashcan {
visibility: visible;
}
tr {
/* border-bottom: 1px solid black */
/* width: 79% */
padding-bottom: 5px;
}
ul.quick-links>li {
list-style-type: none;
display: inline-block;
padding: 6px;
}
.quick-links {
text-align: right;
margin: 0 6px;
/*float: right*/
}
.quick-links a {
text-decoration: none;
}
section.subheader {
background-color: #fff;
margin-bottom: 10px;
padding: 6px 20px;
height: 45px;
}
.current {
border-bottom: 2px #5db5f3 solid;
}
header {
height: 50px;
background-color: #5db5f3;
background-image: linear-gradient(#5db5f3, #1087db);
}
section input[type=text] {
padding: 3px;
height: 34px;
width: 220px;
font-size: 18px;
border-radius: 3px;
}
footer {
padding: 15px;
text-align: center;
font-size: 14px;
}
.chart-container {
margin: 10px;
}
table {
text-align: left;
border-collapse: collapse;
}
td {
padding: 0 5px 5px;
}
th {
padding-bottom: 10px;
font-size: 18px;
}
.main {
width: 80%;
}
.right,
.stats {
float: right;
}
.left {
float: left;
}
.stats {
width: 20%;
}
.stats small {
visibility: hidden;
margin-left: 5px;
opacity: 0.2;
}
.stats small:before {
content: "(";
}
.stats small:after {
content: ")";
}
.stats li {
word-wrap: break-word;
}
.stats li:hover small {
visibility: visible;
}