张卓
2022-09-20 5aead44ba1be31db948dfd8362c2bfcbedbbce29
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
.h1,
.h2,
.h3 {
  small,
  .small {
    font-size: 65%;
  }
}
 
.h4,
.h5,
.h6 {
  small,
  .small {
    font-size: 75%;
  }
}
 
.h1 { font-size: @h1-font-size !important; }
.h2 { font-size: @h2-font-size !important; }
.h3 { font-size: @h3-font-size !important; }
.h4 { font-size: @h4-font-size !important; }
.h5 { font-size: @h5-font-size !important; }
.h6 { font-size: @h6-font-size !important; }
 
// List
.list-styled {
  padding-left: @ul-ol-margin;
  list-style: inherit;
}
 
.link-unstyled {
  padding-left: 0;
  list-style: none;
}
 
// Forms
fieldset {
  border: none;
}
 
// Display
.display-1 {
  font-size: 32px;
}
 
.display-2 {
  font-size: 24px;
}
 
.display-3 {
  font-size: 20px;
}