mirror of
https://github.com/zadam/trilium.git
synced 2026-01-06 06:34:25 +01:00
109 lines
1.6 KiB
CSS
109 lines
1.6 KiB
CSS
.bx-rotate-90
|
|
{
|
|
transform: rotate(90deg);
|
|
|
|
-ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=1)';
|
|
}
|
|
.bx-rotate-180
|
|
{
|
|
transform: rotate(180deg);
|
|
|
|
-ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2)';
|
|
}
|
|
.bx-rotate-270
|
|
{
|
|
transform: rotate(270deg);
|
|
|
|
-ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=3)';
|
|
}
|
|
.bx-flip-horizontal
|
|
{
|
|
transform: scaleX(-1);
|
|
|
|
-ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)';
|
|
}
|
|
.bx-flip-vertical
|
|
{
|
|
transform: scaleY(-1);
|
|
|
|
-ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)';
|
|
}
|
|
.bx-xs
|
|
{
|
|
font-size: 1rem!important;
|
|
}
|
|
.bx-sm
|
|
{
|
|
font-size: 1.55rem!important;
|
|
}
|
|
.bx-md
|
|
{
|
|
font-size: 2.25rem!important;
|
|
}
|
|
.bx-lg
|
|
{
|
|
font-size: 3.0rem!important;
|
|
}
|
|
.bx-fw
|
|
{
|
|
font-size: 1.2857142857em;
|
|
line-height: .8em;
|
|
|
|
width: 1.2857142857em;
|
|
height: .8em;
|
|
margin-top: -.2em!important;
|
|
|
|
vertical-align: middle;
|
|
}
|
|
.bx-pull-left
|
|
{
|
|
float: left;
|
|
|
|
margin-right: .3em!important;
|
|
}
|
|
.bx-pull-right
|
|
{
|
|
float: right;
|
|
|
|
margin-left: .3em!important;
|
|
}
|
|
|
|
.bx-border
|
|
{
|
|
padding: .25em;
|
|
|
|
border: .07em solid rgba(0,0,0,.1);
|
|
border-radius: .25em;
|
|
}
|
|
.bx-border-circle
|
|
{
|
|
padding: .25em;
|
|
|
|
border: .07em solid rgba(0,0,0,.1);
|
|
border-radius: 50%;
|
|
}
|
|
.bx-ul
|
|
{
|
|
margin-left: 2em;
|
|
padding-left: 0;
|
|
|
|
list-style: none;
|
|
}
|
|
.bx-ul > li
|
|
{
|
|
position: relative;
|
|
}
|
|
|
|
.bx-ul .bx,.bx-ul .bxr,.bx-ul .bxs
|
|
{
|
|
font-size: inherit;
|
|
line-height: inherit;
|
|
|
|
position: absolute;
|
|
left: -2em;
|
|
|
|
width: 2em;
|
|
|
|
text-align: center;
|
|
}
|