all repos — litestore @ bc09339019e165067f33d3e84f6a5b28586aadec

A minimalist nosql document store.

app/styles/elements.less

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
main {
  max-width: 850px;
  margin: auto;
  margin-top: 60px;
}


/* Blocks */

blockquote {
  border-left: 3px solid #dedede;
  padding: 0px 10px;
  margin: 10px 0;
  font-style: italic;
}

pre {
  .mix-box(@light-gray, @dark-gray, @gray-c);
  margin: auto;
  font-family: @monospace-font;
  padding: 0;
  code {
    box-shadow: none;
    background: @light-gray;
    padding: 0px 2px 0 2px;
    border: none;
    line-height: 1.2em;
  }
  .hljs {
    padding: 0 3px;
  }
}

address {
  font-style: italic;
  color: @gray;
}

hr {
  border: 0;
  height: 1px;
  background-image: -webkit-linear-gradient(left, rgba(99,99,99,0), rgba(99,99,99,0.75), rgba(99,99,99,0)); 
  background-image:    -moz-linear-gradient(left, rgba(99,99,99,0), rgba(99,99,99,0.75), rgba(99,99,99,0)); 
  background-image:     -ms-linear-gradient(left, rgba(99,99,99,0), rgba(99,99,99,0.75), rgba(99,99,99,0)); 
  background-image:      -o-linear-gradient(left, rgba(99,99,99,0), rgba(99,99,99,0.75), rgba(99,99,99,0)); 
}

/* Inline */

[class^="fa-"] {
  font-family: "FontAwesome";
}

code, span.code {
  .mix-inline-box(@light-gray, @dark-gray, @light-gray);
  margin: 2px 0px;
  font-family: @monospace-font;
  font-size: 85%;
  .mix-hyphens(none);
}

kbd, span.kbd {
  .mix-inline-box(@light-gray, @dark-gray, @gray);
  font-family: @monospace-font;
  font-weight: bold;
  border-right: 1px solid @gray-b;
  border-bottom: 1px solid @gray-b;
  line-height: 1em;
  font-size: 80%;
  .mix-hyphens(none);
}

mark, span.mark {
  padding: 0 1px;
  color: @gray-2;
}

abbr, span.abbr {
  font-variant: small-caps;
  font-weight: bolder;
  .mix-hyphens(none);
  &:hover {
    cursor: help;
  }
}

samp, span.samp {
  font-size: 90%;
  .mix-inline-box(@light-gray, @dark-gray, @light-gray);
  .mix-hyphens(none);
}

var, span.var {
  font-size: 90%;
  font-family: @monospace-font; 
  font-weight: bold;
  font-style: normal;
  .mix-hyphens(none);
}

cite, span.cite {
  font-weight: bold;
  font-style: italic;
  .mix-hyphens(none);
}

q, span.q {
  font-style: italic;
  color: @gray-6;
  .mix-hyphens(none);
}

span.tt, span.cmd, 
span.opt, span.arg, span.kwd,
span.ext, span.file, span.dir {
  font-size: 90%;
  font-family: @monospace-font;
  .mix-hyphens(none);
}

span.ext, span.kwd {
  font-weight: bold;
}