mirror of
https://github.com/sstent/node.git
synced 2026-01-26 23:22:28 +00:00
154 lines
2.4 KiB
Stylus
154 lines
2.4 KiB
Stylus
@import "nib/vendor";
|
|
|
|
p {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
body {
|
|
margin: 10px;
|
|
}
|
|
body,
|
|
select {
|
|
font: 13px/normal arial,sans-serif;
|
|
}
|
|
table {
|
|
border-collapse: collapse;
|
|
border-spacing: 0;
|
|
}
|
|
#alert {
|
|
position: absolute;
|
|
text-align: center;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 0;
|
|
z-index: 99;
|
|
}
|
|
#alert > p {
|
|
background: #fff1a8;
|
|
border: 1px solid #999;
|
|
border-top: 0;
|
|
border-radius: 0 0 3px 3px;
|
|
display: inline-block;
|
|
line-height: 21px;
|
|
padding: 0 12px;
|
|
}
|
|
|
|
.css {
|
|
list-style: none;
|
|
padding-left: 1em;
|
|
margin: 0
|
|
}
|
|
.cssOutput {
|
|
border: 1px solid rgba(black, 0);
|
|
background: rgba(white, 0);
|
|
}
|
|
.popupTitle {
|
|
display: none;
|
|
}
|
|
.poppedOut {
|
|
position: fixed;
|
|
border: 1px solid rgba(black, .2);
|
|
box-shadow: 0 1px 8px rgba(black, .2), 0 16px 32px rgba(black, .2);
|
|
top: 45px;
|
|
bottom: 1em;
|
|
left: 50%;
|
|
right: 1em;
|
|
background: rgba(white, .8);
|
|
transition-property: border, box-shadow;
|
|
transition-duration: .5s;
|
|
transition-timing-function: ease-out;
|
|
|
|
.popupTitle {
|
|
display: block;
|
|
padding: .5em 1em;
|
|
text-align: right;
|
|
background: #f3f3f3;
|
|
border-bottom: 1px solid #e7e7e7;
|
|
}
|
|
.popupContent {
|
|
padding: 1em;
|
|
}
|
|
}
|
|
|
|
.tableEditor {
|
|
table {
|
|
user-select: none;
|
|
}
|
|
th {
|
|
cursor: move;
|
|
padding: 0 4px;
|
|
}
|
|
.foot {
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
#leaderboard {
|
|
green = #9acd05
|
|
pink = #fe5cba
|
|
|
|
font-size: 2em;
|
|
font-family: "Helvetica Neue";
|
|
font-weight: 300;
|
|
display: inline-block;
|
|
button {
|
|
font-size: 13px;
|
|
}
|
|
.selectedPlayer {
|
|
font-weight: 500;
|
|
margin: 1em 0;
|
|
padding-bottom: 5px;
|
|
border-bottom: 5px solid green;
|
|
button {
|
|
vertical-align: 5px;
|
|
}
|
|
}
|
|
.vote {
|
|
float: right;
|
|
}
|
|
ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin-top: 5px;
|
|
cursor: pointer;
|
|
li {
|
|
padding: 5px;
|
|
width: 400px;
|
|
}
|
|
li:hover {
|
|
background: lighten(pink, 80%);
|
|
}
|
|
.score {
|
|
font-weight: 500;
|
|
float: right;
|
|
}
|
|
.selected,
|
|
.selected:hover {
|
|
background: pink;
|
|
box-shadow: inset 0 -2px darken(pink, 50%);
|
|
}
|
|
}
|
|
}
|
|
|
|
.bindingsBench p {
|
|
margin-bottom: 1em;
|
|
}
|
|
.box {
|
|
border-radius: 100px;
|
|
width: 20px;
|
|
height: 10px;
|
|
padding: 5px 0;
|
|
color: #ccc;
|
|
font: 10px/10px Arial;
|
|
text-align: center;
|
|
position: absolute;
|
|
}
|
|
.box-view {
|
|
width: 20px;
|
|
height: 20px;
|
|
float: left;
|
|
position: relative;
|
|
margin: 8px;
|
|
}
|