remove fontawesome in favor of raw unicode arrows
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit is contained in:
David 2023-02-25 17:22:57 -05:00
parent 8bdf848cbf
commit 26b6ce6157
2 changed files with 7 additions and 16 deletions

View File

@ -2,10 +2,6 @@
<html>
<head>
<title>Library</title>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link rel="stylesheet" href="style.css" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link

View File

@ -208,30 +208,25 @@ body {
}
.bookTable th[data-sort-by]::after {
content: "\f0dc";
font-family: FontAwesome;
font-size: x-small;
content: "\2195";
position: relative;
left: 4px;
bottom: 2px;
}
.bookTable th.asc::after {
content: "\f0de";
font-family: FontAwesome;
font-size: x-small;
content: "\2191";
font-size: small;
position: relative;
left: 4px;
bottom: 2px;
bottom: 1px;
}
.bookTable th.desc::after {
content: "\f0dd";
font-family: FontAwesome;
font-size: x-small;
content: "\2193";
font-size: small;
position: relative;
left: 4px;
bottom: 2px;
bottom: 1px;
}
.bookTable td,