bootstrap-source/bootstrap-3.0.3/less/type.less
author stetrabby <info@trabucchi.de>
Fri, 20 Dec 2013 22:49:16 +0100
changeset 54 0ded9d7748b7
permissions -rwxr-xr-x
initial less based on the pymove3d.css
info@54
     1
//
info@54
     2
// Typography
info@54
     3
// --------------------------------------------------
info@54
     4
info@54
     5
info@54
     6
// Headings
info@54
     7
// -------------------------
info@54
     8
info@54
     9
h1, h2, h3, h4, h5, h6,
info@54
    10
.h1, .h2, .h3, .h4, .h5, .h6 {
info@54
    11
  font-family: @headings-font-family;
info@54
    12
  font-weight: @headings-font-weight;
info@54
    13
  line-height: @headings-line-height;
info@54
    14
  color: @headings-color;
info@54
    15
info@54
    16
  small,
info@54
    17
  .small {
info@54
    18
    font-weight: normal;
info@54
    19
    line-height: 1;
info@54
    20
    color: @headings-small-color;
info@54
    21
  }
info@54
    22
}
info@54
    23
info@54
    24
h1,
info@54
    25
h2,
info@54
    26
h3 {
info@54
    27
  margin-top: @line-height-computed;
info@54
    28
  margin-bottom: (@line-height-computed / 2);
info@54
    29
info@54
    30
  small,
info@54
    31
  .small {
info@54
    32
    font-size: 65%;
info@54
    33
  }
info@54
    34
}
info@54
    35
h4,
info@54
    36
h5,
info@54
    37
h6 {
info@54
    38
  margin-top: (@line-height-computed / 2);
info@54
    39
  margin-bottom: (@line-height-computed / 2);
info@54
    40
info@54
    41
  small,
info@54
    42
  .small {
info@54
    43
    font-size: 75%;
info@54
    44
  }
info@54
    45
}
info@54
    46
info@54
    47
h1, .h1 { font-size: @font-size-h1; }
info@54
    48
h2, .h2 { font-size: @font-size-h2; }
info@54
    49
h3, .h3 { font-size: @font-size-h3; }
info@54
    50
h4, .h4 { font-size: @font-size-h4; }
info@54
    51
h5, .h5 { font-size: @font-size-h5; }
info@54
    52
h6, .h6 { font-size: @font-size-h6; }
info@54
    53
info@54
    54
info@54
    55
// Body text
info@54
    56
// -------------------------
info@54
    57
info@54
    58
p {
info@54
    59
  margin: 0 0 (@line-height-computed / 2);
info@54
    60
}
info@54
    61
info@54
    62
.lead {
info@54
    63
  margin-bottom: @line-height-computed;
info@54
    64
  font-size: floor(@font-size-base * 1.15);
info@54
    65
  font-weight: 200;
info@54
    66
  line-height: 1.4;
info@54
    67
info@54
    68
  @media (min-width: @screen-sm-min) {
info@54
    69
    font-size: (@font-size-base * 1.5);
info@54
    70
  }
info@54
    71
}
info@54
    72
info@54
    73
info@54
    74
// Emphasis & misc
info@54
    75
// -------------------------
info@54
    76
info@54
    77
// Ex: 14px base font * 85% = about 12px
info@54
    78
small,
info@54
    79
.small  { font-size: 85%; }
info@54
    80
info@54
    81
// Undo browser default styling
info@54
    82
cite    { font-style: normal; }
info@54
    83
info@54
    84
// Contextual emphasis
info@54
    85
.text-muted {
info@54
    86
  color: @text-muted;
info@54
    87
}
info@54
    88
.text-primary {
info@54
    89
  color: @brand-primary;
info@54
    90
  &:hover {
info@54
    91
    color: darken(@brand-primary, 10%);
info@54
    92
  }
info@54
    93
}
info@54
    94
.text-warning {
info@54
    95
  color: @state-warning-text;
info@54
    96
  &:hover {
info@54
    97
    color: darken(@state-warning-text, 10%);
info@54
    98
  }
info@54
    99
}
info@54
   100
.text-danger {
info@54
   101
  color: @state-danger-text;
info@54
   102
  &:hover {
info@54
   103
    color: darken(@state-danger-text, 10%);
info@54
   104
  }
info@54
   105
}
info@54
   106
.text-success {
info@54
   107
  color: @state-success-text;
info@54
   108
  &:hover {
info@54
   109
    color: darken(@state-success-text, 10%);
info@54
   110
  }
info@54
   111
}
info@54
   112
.text-info {
info@54
   113
  color: @state-info-text;
info@54
   114
  &:hover {
info@54
   115
    color: darken(@state-info-text, 10%);
info@54
   116
  }
info@54
   117
}
info@54
   118
info@54
   119
// Alignment
info@54
   120
.text-left           { text-align: left; }
info@54
   121
.text-right          { text-align: right; }
info@54
   122
.text-center         { text-align: center; }
info@54
   123
info@54
   124
info@54
   125
// Page header
info@54
   126
// -------------------------
info@54
   127
info@54
   128
.page-header {
info@54
   129
  padding-bottom: ((@line-height-computed / 2) - 1);
info@54
   130
  margin: (@line-height-computed * 2) 0 @line-height-computed;
info@54
   131
  border-bottom: 1px solid @page-header-border-color;
info@54
   132
}
info@54
   133
info@54
   134
info@54
   135
// Lists
info@54
   136
// --------------------------------------------------
info@54
   137
info@54
   138
// Unordered and Ordered lists
info@54
   139
ul,
info@54
   140
ol {
info@54
   141
  margin-top: 0;
info@54
   142
  margin-bottom: (@line-height-computed / 2);
info@54
   143
  ul,
info@54
   144
  ol {
info@54
   145
    margin-bottom: 0;
info@54
   146
  }
info@54
   147
}
info@54
   148
info@54
   149
// List options
info@54
   150
info@54
   151
// Unstyled keeps list items block level, just removes default browser padding and list-style
info@54
   152
.list-unstyled {
info@54
   153
  padding-left: 0;
info@54
   154
  list-style: none;
info@54
   155
}
info@54
   156
info@54
   157
// Inline turns list items into inline-block
info@54
   158
.list-inline {
info@54
   159
  .list-unstyled();
info@54
   160
info@54
   161
  > li {
info@54
   162
    display: inline-block;
info@54
   163
    padding-left: 5px;
info@54
   164
    padding-right: 5px;
info@54
   165
info@54
   166
    &:first-child {
info@54
   167
      padding-left: 0;
info@54
   168
    }
info@54
   169
  }
info@54
   170
}
info@54
   171
info@54
   172
// Description Lists
info@54
   173
dl {
info@54
   174
  margin-top: 0; // Remove browser default
info@54
   175
  margin-bottom: @line-height-computed;
info@54
   176
}
info@54
   177
dt,
info@54
   178
dd {
info@54
   179
  line-height: @line-height-base;
info@54
   180
}
info@54
   181
dt {
info@54
   182
  font-weight: bold;
info@54
   183
}
info@54
   184
dd {
info@54
   185
  margin-left: 0; // Undo browser default
info@54
   186
}
info@54
   187
info@54
   188
// Horizontal description lists
info@54
   189
//
info@54
   190
// Defaults to being stacked without any of the below styles applied, until the
info@54
   191
// grid breakpoint is reached (default of ~768px).
info@54
   192
info@54
   193
@media (min-width: @grid-float-breakpoint) {
info@54
   194
  .dl-horizontal {
info@54
   195
    dt {
info@54
   196
      float: left;
info@54
   197
      width: (@component-offset-horizontal - 20);
info@54
   198
      clear: left;
info@54
   199
      text-align: right;
info@54
   200
      .text-overflow();
info@54
   201
    }
info@54
   202
    dd {
info@54
   203
      margin-left: @component-offset-horizontal;
info@54
   204
      .clearfix(); // Clear the floated `dt` if an empty `dd` is present
info@54
   205
    }
info@54
   206
  }
info@54
   207
}
info@54
   208
info@54
   209
// MISC
info@54
   210
// ----
info@54
   211
info@54
   212
// Abbreviations and acronyms
info@54
   213
abbr[title],
info@54
   214
// Add data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257
info@54
   215
abbr[data-original-title] {
info@54
   216
  cursor: help;
info@54
   217
  border-bottom: 1px dotted @abbr-border-color;
info@54
   218
}
info@54
   219
.initialism {
info@54
   220
  font-size: 90%;
info@54
   221
  text-transform: uppercase;
info@54
   222
}
info@54
   223
info@54
   224
// Blockquotes
info@54
   225
blockquote {
info@54
   226
  padding: (@line-height-computed / 2) @line-height-computed;
info@54
   227
  margin: 0 0 @line-height-computed;
info@54
   228
  border-left: 5px solid @blockquote-border-color;
info@54
   229
  p {
info@54
   230
    font-size: (@font-size-base * 1.25);
info@54
   231
    font-weight: 300;
info@54
   232
    line-height: 1.25;
info@54
   233
  }
info@54
   234
  p:last-child {
info@54
   235
    margin-bottom: 0;
info@54
   236
  }
info@54
   237
  small,
info@54
   238
  .small {
info@54
   239
    display: block;
info@54
   240
    line-height: @line-height-base;
info@54
   241
    color: @blockquote-small-color;
info@54
   242
    &:before {
info@54
   243
      content: '\2014 \00A0'; // EM DASH, NBSP
info@54
   244
    }
info@54
   245
  }
info@54
   246
info@54
   247
  // Float right with text-align: right
info@54
   248
  &.pull-right {
info@54
   249
    padding-right: 15px;
info@54
   250
    padding-left: 0;
info@54
   251
    border-right: 5px solid @blockquote-border-color;
info@54
   252
    border-left: 0;
info@54
   253
    p,
info@54
   254
    small,
info@54
   255
    .small {
info@54
   256
      text-align: right;
info@54
   257
    }
info@54
   258
    small,
info@54
   259
    .small {
info@54
   260
      &:before {
info@54
   261
        content: '';
info@54
   262
      }
info@54
   263
      &:after {
info@54
   264
        content: '\00A0 \2014'; // NBSP, EM DASH
info@54
   265
      }
info@54
   266
    }
info@54
   267
  }
info@54
   268
}
info@54
   269
info@54
   270
// Quotes
info@54
   271
blockquote:before,
info@54
   272
blockquote:after {
info@54
   273
  content: "";
info@54
   274
}
info@54
   275
info@54
   276
// Addresses
info@54
   277
address {
info@54
   278
  margin-bottom: @line-height-computed;
info@54
   279
  font-style: normal;
info@54
   280
  line-height: @line-height-base;
info@54
   281
}
Impressum Datenschutzerklärung