Fork-Awesome/src/doc/assets/less/site/bootstrap/type.less
Hugo Locurcio 284cfebe31
Improve the font stack used on the website
- Use a modern system font stack as used by Bootstrap 4.
- Replace light font weights with normal font weights, as these are
  easier to read.
- Remove the use of the Proxima Nova font as it's not installed
  on all systems. Loading it as a web font would slow down page loading,
  so it's probably not a good idea if it's only used rarely.
2019-12-21 22:45:55 +01:00

23 lines
364 B
Plaintext

.hr {
position: relative;
text-align: center;
font-size: @font-size-base;
z-index: 1;
min-height: 20px;
&:after {
content: " ";
position: absolute;
top: 50%;
left: 0;
right: 0;
border-top: 2px solid @hr-border;
z-index: -1;
}
.hr-text {
display: inline-block;
background-color: #fff;
padding: 0 .5em;
}
}