mirror of
https://github.com/dwinkler1/dwinkler1.github.io.git
synced 2026-02-19 14:40:57 -05:00
init website
This commit is contained in:
parent
340b4b775d
commit
7f619c6f4a
64 changed files with 21672 additions and 1 deletions
7
_extensions/quarto-ext/fontawesome/_extension.yml
Normal file
7
_extensions/quarto-ext/fontawesome/_extension.yml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
title: Font Awesome support
|
||||
author: Carlos Scheidegger
|
||||
version: 1.1.0
|
||||
quarto-required: ">=1.2.269"
|
||||
contributes:
|
||||
shortcodes:
|
||||
- fontawesome.lua
|
||||
7971
_extensions/quarto-ext/fontawesome/assets/css/all.css
vendored
Normal file
7971
_extensions/quarto-ext/fontawesome/assets/css/all.css
vendored
Normal file
File diff suppressed because it is too large
Load diff
30
_extensions/quarto-ext/fontawesome/assets/css/latex-fontsize.css
vendored
Normal file
30
_extensions/quarto-ext/fontawesome/assets/css/latex-fontsize.css
vendored
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
.fa-tiny {
|
||||
font-size: 0.5em;
|
||||
}
|
||||
.fa-scriptsize {
|
||||
font-size: 0.7em;
|
||||
}
|
||||
.fa-footnotesize {
|
||||
font-size: 0.8em;
|
||||
}
|
||||
.fa-small {
|
||||
font-size: 0.9em;
|
||||
}
|
||||
.fa-normalsize {
|
||||
font-size: 1em;
|
||||
}
|
||||
.fa-large {
|
||||
font-size: 1.2em;
|
||||
}
|
||||
.fa-Large {
|
||||
font-size: 1.5em;
|
||||
}
|
||||
.fa-LARGE {
|
||||
font-size: 1.75em;
|
||||
}
|
||||
.fa-huge {
|
||||
font-size: 2em;
|
||||
}
|
||||
.fa-Huge {
|
||||
font-size: 2.5em;
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
84
_extensions/quarto-ext/fontawesome/fontawesome.lua
Normal file
84
_extensions/quarto-ext/fontawesome/fontawesome.lua
Normal file
|
|
@ -0,0 +1,84 @@
|
|||
local function ensureLatexDeps()
|
||||
quarto.doc.use_latex_package("fontawesome5")
|
||||
end
|
||||
|
||||
local function ensureHtmlDeps()
|
||||
quarto.doc.add_html_dependency({
|
||||
name = 'fontawesome6',
|
||||
version = '0.1.0',
|
||||
stylesheets = {'assets/css/all.css', 'assets/css/latex-fontsize.css'}
|
||||
})
|
||||
end
|
||||
|
||||
local function isEmpty(s)
|
||||
return s == nil or s == ''
|
||||
end
|
||||
|
||||
local function isValidSize(size)
|
||||
local validSizes = {
|
||||
"tiny",
|
||||
"scriptsize",
|
||||
"footnotesize",
|
||||
"small",
|
||||
"normalsize",
|
||||
"large",
|
||||
"Large",
|
||||
"LARGE",
|
||||
"huge",
|
||||
"Huge"
|
||||
}
|
||||
for _, v in ipairs(validSizes) do
|
||||
if v == size then
|
||||
return size
|
||||
end
|
||||
end
|
||||
return ""
|
||||
end
|
||||
|
||||
return {
|
||||
["fa"] = function(args, kwargs)
|
||||
|
||||
local group = "solid"
|
||||
local icon = pandoc.utils.stringify(args[1])
|
||||
if #args > 1 then
|
||||
group = icon
|
||||
icon = pandoc.utils.stringify(args[2])
|
||||
end
|
||||
|
||||
local title = pandoc.utils.stringify(kwargs["title"])
|
||||
if not isEmpty(title) then
|
||||
title = " title=\"" .. title .. "\""
|
||||
end
|
||||
|
||||
local label = pandoc.utils.stringify(kwargs["label"])
|
||||
if isEmpty(label) then
|
||||
label = " aria-label=\"" .. icon .. "\""
|
||||
else
|
||||
label = " aria-label=\"" .. label .. "\""
|
||||
end
|
||||
|
||||
local size = pandoc.utils.stringify(kwargs["size"])
|
||||
|
||||
-- detect html (excluding epub which won't handle fa)
|
||||
if quarto.doc.is_format("html:js") then
|
||||
ensureHtmlDeps()
|
||||
if not isEmpty(size) then
|
||||
size = " fa-" .. size
|
||||
end
|
||||
return pandoc.RawInline(
|
||||
'html',
|
||||
"<i class=\"fa-" .. group .. " fa-" .. icon .. size .. "\"" .. title .. label .. "></i>"
|
||||
)
|
||||
-- detect pdf / beamer / latex / etc
|
||||
elseif quarto.doc.is_format("pdf") then
|
||||
ensureLatexDeps()
|
||||
if isEmpty(isValidSize(size)) then
|
||||
return pandoc.RawInline('tex', "\\faIcon{" .. icon .. "}")
|
||||
else
|
||||
return pandoc.RawInline('tex', "{\\" .. size .. "\\faIcon{" .. icon .. "}}")
|
||||
end
|
||||
else
|
||||
return pandoc.Null()
|
||||
end
|
||||
end
|
||||
}
|
||||
6
_extensions/schochastics/academicons/_extension.yml
Normal file
6
_extensions/schochastics/academicons/_extension.yml
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
title: Support for academicons
|
||||
author: David Schoch
|
||||
version: 0.3.0
|
||||
contributes:
|
||||
shortcodes:
|
||||
- academicons.lua
|
||||
82
_extensions/schochastics/academicons/academicons.lua
Normal file
82
_extensions/schochastics/academicons/academicons.lua
Normal file
|
|
@ -0,0 +1,82 @@
|
|||
-- function ensureLatexDeps()
|
||||
-- quarto.doc.useLatexPackage("academicons")
|
||||
-- end
|
||||
|
||||
local function ensureHtmlDeps()
|
||||
quarto.doc.addHtmlDependency({
|
||||
name = "academicons",
|
||||
version = "1.9.2",
|
||||
stylesheets = { "assets/css/all.css", "assets/css/size.css" }
|
||||
})
|
||||
end
|
||||
|
||||
local function isEmpty(s)
|
||||
return s == nil or s == ''
|
||||
end
|
||||
|
||||
local function isValidSize(size)
|
||||
local validSizes = {
|
||||
"tiny", "scriptsize", "footnotesize", "small", "normalsize",
|
||||
"large", "Large", "LARGE", "huge", "Huge",
|
||||
"1x", "2x", "3x", "4x", "5x", "6x", "7x", "8x", "9x", "10x",
|
||||
"2xs", "xs", "sm", "lg", "xl", "2xl"
|
||||
}
|
||||
for _, v in ipairs(validSizes) do
|
||||
if v == size then
|
||||
return " ai-" .. size
|
||||
end
|
||||
end
|
||||
return ""
|
||||
end
|
||||
|
||||
return {
|
||||
["ai"] = function(args, kwargs)
|
||||
local group = ""
|
||||
local icon = pandoc.utils.stringify(args[1])
|
||||
if #args > 1 then
|
||||
group = icon
|
||||
icon = pandoc.utils.stringify(args[2])
|
||||
end
|
||||
|
||||
local size = isValidSize(pandoc.utils.stringify(kwargs["size"]))
|
||||
local color = pandoc.utils.stringify(kwargs["color"])
|
||||
if not isEmpty(color) then
|
||||
color = " style=\"color:" .. color .. "\""
|
||||
--else
|
||||
-- color = " style=\"color:" .. "black" .. "\""
|
||||
end
|
||||
|
||||
local title = pandoc.utils.stringify(kwargs["title"])
|
||||
if not isEmpty(title) then
|
||||
title = " title=\"" .. title .. "\""
|
||||
end
|
||||
|
||||
-- detect html (excluding epub)
|
||||
if quarto.doc.isFormat("html:js") then
|
||||
ensureHtmlDeps()
|
||||
if isEmpty(size) then
|
||||
local csize = pandoc.utils.stringify(kwargs["size"])
|
||||
if (isEmpty(csize)) then
|
||||
csize = ""
|
||||
else
|
||||
csize = " style=\"font-size:" .. csize .. "\""
|
||||
end
|
||||
return pandoc.RawInline(
|
||||
'html',
|
||||
"<i class=\"ai " .. group .. " ai-" .. icon .. "\"" .. title .. color .. csize .. "></i>"
|
||||
)
|
||||
else
|
||||
return pandoc.RawInline(
|
||||
'html',
|
||||
"<i class=\"ai " .. group .. " ai-" .. icon .. size .. "\"" .. title .. color .. "></i>"
|
||||
)
|
||||
end
|
||||
-- detect pdf / beamer / latex / etc
|
||||
-- elseif quarto.doc.isFormat("pdf") then
|
||||
-- ensureLatexDeps()
|
||||
-- return pandoc.RawInline('tex', "\\aiIcon{" .. icon .. "}")
|
||||
else
|
||||
return pandoc.Null()
|
||||
end
|
||||
end
|
||||
}
|
||||
738
_extensions/schochastics/academicons/assets/css/all.css
Executable file
738
_extensions/schochastics/academicons/assets/css/all.css
Executable file
|
|
@ -0,0 +1,738 @@
|
|||
/*
|
||||
* Academicons 1.9.4 by James Walsh (https://github.com/jpswalsh) and Katja Bercic (https://github.com/katjabercic)
|
||||
* Fonts generated using FontForge - https://fontforge.org
|
||||
* Square icons designed to be used alongside Font Awesome square icons - https://fortawesome.github.io/Font-Awesome/
|
||||
* Licenses - Font: SIL OFL 1.1, CSS: MIT License
|
||||
*/
|
||||
@font-face {
|
||||
font-family: 'Academicons';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-display: block;
|
||||
src: url('../webfonts/academicons.eot');
|
||||
src: url('../webfonts/academicons.eot') format('embedded-opentype'),
|
||||
url('../webfonts/academicons.ttf') format('truetype'),
|
||||
url('../webfonts/academicons.woff') format('woff'),
|
||||
url('../webfonts/academicons.svg') format('svg');
|
||||
}
|
||||
|
||||
.ai {
|
||||
font-family: 'Academicons';
|
||||
font-weight: 400;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
display: inline-block;
|
||||
font-style: normal;
|
||||
font-variant: normal;
|
||||
text-rendering: auto;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.ai-academia:before {
|
||||
content: "\e9af";
|
||||
}
|
||||
|
||||
.ai-academia-square:before {
|
||||
content: "\e93d";
|
||||
}
|
||||
|
||||
.ai-acclaim:before {
|
||||
content: "\e92e";
|
||||
}
|
||||
|
||||
.ai-acclaim-square:before {
|
||||
content: "\e93a";
|
||||
}
|
||||
|
||||
.ai-acm:before {
|
||||
content: "\e93c";
|
||||
}
|
||||
|
||||
.ai-acm-square:before {
|
||||
content: "\e95d";
|
||||
}
|
||||
|
||||
.ai-acmdl:before {
|
||||
content: "\e96a";
|
||||
}
|
||||
|
||||
.ai-acmdl-square:before {
|
||||
content: "\e9d3";
|
||||
}
|
||||
|
||||
.ai-ads:before {
|
||||
content: "\e9cb";
|
||||
}
|
||||
|
||||
.ai-ads-square:before {
|
||||
content: "\e94a";
|
||||
}
|
||||
|
||||
.ai-africarxiv:before {
|
||||
content: "\e91b";
|
||||
}
|
||||
|
||||
.ai-africarxiv-square:before {
|
||||
content: "\e90b";
|
||||
}
|
||||
|
||||
.ai-archive:before {
|
||||
content: "\e955";
|
||||
}
|
||||
|
||||
.ai-archive-square:before {
|
||||
content: "\e956";
|
||||
}
|
||||
|
||||
.ai-arxiv:before {
|
||||
content: "\e974";
|
||||
}
|
||||
|
||||
.ai-arxiv-square:before {
|
||||
content: "\e9a6";
|
||||
}
|
||||
|
||||
.ai-biorxiv:before {
|
||||
content: "\e9a2";
|
||||
}
|
||||
|
||||
.ai-biorxiv-square:before {
|
||||
content: "\e98b";
|
||||
}
|
||||
|
||||
.ai-ceur:before {
|
||||
content: "\e96d";
|
||||
}
|
||||
|
||||
.ai-ceur-square:before {
|
||||
content: "\e92f";
|
||||
}
|
||||
|
||||
.ai-ciencia-vitae:before {
|
||||
content: "\e912";
|
||||
}
|
||||
|
||||
.ai-ciencia-vitae-square:before {
|
||||
content: "\e913";
|
||||
}
|
||||
|
||||
.ai-clarivate:before {
|
||||
content: "\e924";
|
||||
}
|
||||
|
||||
.ai-clarivate-square:before {
|
||||
content: "\e925";
|
||||
}
|
||||
|
||||
.ai-closed-access:before {
|
||||
content: "\e942";
|
||||
}
|
||||
|
||||
.ai-closed-access-square:before {
|
||||
content: "\e943";
|
||||
}
|
||||
|
||||
.ai-conversation:before {
|
||||
content: "\e94c";
|
||||
}
|
||||
|
||||
.ai-conversation-square:before {
|
||||
content: "\e915";
|
||||
}
|
||||
|
||||
.ai-coursera:before {
|
||||
content: "\e95f";
|
||||
}
|
||||
|
||||
.ai-coursera-square:before {
|
||||
content: "\e97f";
|
||||
}
|
||||
|
||||
.ai-crossref:before {
|
||||
content: "\e918";
|
||||
}
|
||||
|
||||
.ai-crossref-square:before {
|
||||
content: "\e919";
|
||||
}
|
||||
|
||||
.ai-cv:before {
|
||||
content: "\e9a5";
|
||||
}
|
||||
|
||||
.ai-cv-square:before {
|
||||
content: "\e90a";
|
||||
}
|
||||
|
||||
.ai-datacite:before {
|
||||
content: "\e91c";
|
||||
}
|
||||
|
||||
.ai-datacite-square:before {
|
||||
content: "\e91d";
|
||||
}
|
||||
|
||||
.ai-dataverse:before {
|
||||
content: "\e9f7";
|
||||
}
|
||||
|
||||
.ai-dataverse-square:before {
|
||||
content: "\e9e4";
|
||||
}
|
||||
|
||||
.ai-dblp:before {
|
||||
content: "\e94f";
|
||||
}
|
||||
|
||||
.ai-dblp-square:before {
|
||||
content: "\e93f";
|
||||
}
|
||||
|
||||
.ai-depsy:before {
|
||||
content: "\e97a";
|
||||
}
|
||||
|
||||
.ai-depsy-square:before {
|
||||
content: "\e94b";
|
||||
}
|
||||
|
||||
.ai-doi:before {
|
||||
content: "\e97e";
|
||||
}
|
||||
|
||||
.ai-doi-square:before {
|
||||
content: "\e98f";
|
||||
}
|
||||
|
||||
.ai-dryad:before {
|
||||
content: "\e97c";
|
||||
}
|
||||
|
||||
.ai-dryad-square:before {
|
||||
content: "\e98c";
|
||||
}
|
||||
|
||||
.ai-elsevier:before {
|
||||
content: "\e961";
|
||||
}
|
||||
|
||||
.ai-elsevier-square:before {
|
||||
content: "\e910";
|
||||
}
|
||||
|
||||
.ai-figshare:before {
|
||||
content: "\e981";
|
||||
}
|
||||
|
||||
.ai-figshare-square:before {
|
||||
content: "\e9e7";
|
||||
}
|
||||
|
||||
.ai-google-scholar:before {
|
||||
content: "\e9d4";
|
||||
}
|
||||
|
||||
.ai-google-scholar-square:before {
|
||||
content: "\e9f9";
|
||||
}
|
||||
|
||||
.ai-hal:before {
|
||||
content: "\e92c";
|
||||
}
|
||||
|
||||
.ai-hal-square:before {
|
||||
content: "\e92d";
|
||||
}
|
||||
|
||||
.ai-hypothesis:before {
|
||||
content: "\e95a";
|
||||
}
|
||||
|
||||
.ai-hypothesis-square:before {
|
||||
content: "\e95b";
|
||||
}
|
||||
|
||||
.ai-ideas-repec:before {
|
||||
content: "\e9ed";
|
||||
}
|
||||
|
||||
.ai-ideas-repec-square:before {
|
||||
content: "\e9f8";
|
||||
}
|
||||
|
||||
.ai-ieee:before {
|
||||
content: "\e929";
|
||||
}
|
||||
|
||||
.ai-ieee-square:before {
|
||||
content: "\e9b9";
|
||||
}
|
||||
|
||||
.ai-impactstory:before {
|
||||
content: "\e9cf";
|
||||
}
|
||||
|
||||
.ai-impactstory-square:before {
|
||||
content: "\e9aa";
|
||||
}
|
||||
|
||||
.ai-inaturalist:before {
|
||||
content: "\e900";
|
||||
}
|
||||
|
||||
.ai-inaturalist-square:before {
|
||||
content: "\e901";
|
||||
}
|
||||
|
||||
.ai-inpn:before {
|
||||
content: "\e902";
|
||||
}
|
||||
|
||||
.ai-inpn-square:before {
|
||||
content: "\e903";
|
||||
}
|
||||
|
||||
.ai-inspire:before {
|
||||
content: "\e9e9";
|
||||
}
|
||||
|
||||
.ai-inspire-square:before {
|
||||
content: "\e9fe";
|
||||
}
|
||||
|
||||
.ai-isidore:before {
|
||||
content: "\e936";
|
||||
}
|
||||
|
||||
.ai-isidore-square:before {
|
||||
content: "\e954";
|
||||
}
|
||||
|
||||
.ai-isni:before {
|
||||
content: "\e957";
|
||||
}
|
||||
|
||||
.ai-isni-square:before {
|
||||
content: "\e958";
|
||||
}
|
||||
|
||||
.ai-jstor:before {
|
||||
content: "\e938";
|
||||
}
|
||||
|
||||
.ai-jstor-square:before {
|
||||
content: "\e944";
|
||||
}
|
||||
|
||||
.ai-lattes:before {
|
||||
content: "\e9b3";
|
||||
}
|
||||
|
||||
.ai-lattes-square:before {
|
||||
content: "\e99c";
|
||||
}
|
||||
|
||||
.ai-mathoverflow:before {
|
||||
content: "\e9f6";
|
||||
}
|
||||
|
||||
.ai-mathoverflow-square:before {
|
||||
content: "\e97b";
|
||||
}
|
||||
|
||||
.ai-mendeley:before {
|
||||
content: "\e9f0";
|
||||
}
|
||||
|
||||
.ai-mendeley-square:before {
|
||||
content: "\e9f3";
|
||||
}
|
||||
|
||||
.ai-moodle:before {
|
||||
content: "\e907";
|
||||
}
|
||||
|
||||
.ai-moodle-square:before {
|
||||
content: "\e908";
|
||||
}
|
||||
|
||||
.ai-mtmt:before {
|
||||
content: "\e950";
|
||||
}
|
||||
|
||||
.ai-mtmt-square:before {
|
||||
content: "\e951";
|
||||
}
|
||||
|
||||
.ai-nakala:before {
|
||||
content: "\e940";
|
||||
}
|
||||
|
||||
.ai-nakala-square:before {
|
||||
content: "\e941";
|
||||
}
|
||||
|
||||
.ai-obp:before {
|
||||
content: "\e92a";
|
||||
}
|
||||
|
||||
.ai-obp-square:before {
|
||||
content: "\e92b";
|
||||
}
|
||||
|
||||
.ai-open-access:before {
|
||||
content: "\e939";
|
||||
}
|
||||
|
||||
.ai-open-access-square:before {
|
||||
content: "\e9f4";
|
||||
}
|
||||
|
||||
.ai-open-data:before {
|
||||
content: "\e966";
|
||||
}
|
||||
|
||||
.ai-open-data-square:before {
|
||||
content: "\e967";
|
||||
}
|
||||
|
||||
.ai-open-materials:before {
|
||||
content: "\e968";
|
||||
}
|
||||
|
||||
.ai-open-materials-square:before {
|
||||
content: "\e969";
|
||||
}
|
||||
|
||||
.ai-openedition:before {
|
||||
content: "\e946";
|
||||
}
|
||||
|
||||
.ai-openedition-square:before {
|
||||
content: "\e947";
|
||||
}
|
||||
|
||||
.ai-orcid:before {
|
||||
content: "\e9d9";
|
||||
}
|
||||
|
||||
.ai-orcid-square:before {
|
||||
content: "\e9c3";
|
||||
}
|
||||
|
||||
.ai-osf:before {
|
||||
content: "\e9ef";
|
||||
}
|
||||
|
||||
.ai-osf-square:before {
|
||||
content: "\e931";
|
||||
}
|
||||
|
||||
.ai-overleaf:before {
|
||||
content: "\e914";
|
||||
}
|
||||
|
||||
.ai-overleaf-square:before {
|
||||
content: "\e98d";
|
||||
}
|
||||
|
||||
.ai-philpapers:before {
|
||||
content: "\e98a";
|
||||
}
|
||||
|
||||
.ai-philpapers-square:before {
|
||||
content: "\e96f";
|
||||
}
|
||||
|
||||
.ai-piazza:before {
|
||||
content: "\e99a";
|
||||
}
|
||||
|
||||
.ai-piazza-square:before {
|
||||
content: "\e90c";
|
||||
}
|
||||
|
||||
.ai-preregistered:before {
|
||||
content: "\e906";
|
||||
}
|
||||
|
||||
.ai-preregistered-square:before {
|
||||
content: "\e96b";
|
||||
}
|
||||
|
||||
.ai-protocols:before {
|
||||
content: "\e952";
|
||||
}
|
||||
|
||||
.ai-protocols-square:before {
|
||||
content: "\e953";
|
||||
}
|
||||
|
||||
.ai-psyarxiv:before {
|
||||
content: "\e90e";
|
||||
}
|
||||
|
||||
.ai-psyarxiv-square:before {
|
||||
content: "\e90f";
|
||||
}
|
||||
|
||||
.ai-publons:before {
|
||||
content: "\e937";
|
||||
}
|
||||
|
||||
.ai-publons-square:before {
|
||||
content: "\e94e";
|
||||
}
|
||||
|
||||
.ai-pubmed:before {
|
||||
content: "\e99f";
|
||||
}
|
||||
|
||||
.ai-pubmed-square:before {
|
||||
content: "\e97d";
|
||||
}
|
||||
|
||||
.ai-pubpeer:before {
|
||||
content: "\e922";
|
||||
}
|
||||
|
||||
.ai-pubpeer-square:before {
|
||||
content: "\e923";
|
||||
}
|
||||
|
||||
.ai-researcherid:before {
|
||||
content: "\e91a";
|
||||
}
|
||||
|
||||
.ai-researcherid-square:before {
|
||||
content: "\e95c";
|
||||
}
|
||||
|
||||
.ai-researchgate:before {
|
||||
content: "\e95e";
|
||||
}
|
||||
|
||||
.ai-researchgate-square:before {
|
||||
content: "\e99e";
|
||||
}
|
||||
|
||||
.ai-ror:before {
|
||||
content: "\e948";
|
||||
}
|
||||
|
||||
.ai-ror-square:before {
|
||||
content: "\e949";
|
||||
}
|
||||
|
||||
.ai-sci-hub:before {
|
||||
content: "\e959";
|
||||
}
|
||||
|
||||
.ai-sci-hub-square:before {
|
||||
content: "\e905";
|
||||
}
|
||||
|
||||
.ai-scirate:before {
|
||||
content: "\e98e";
|
||||
}
|
||||
|
||||
.ai-scirate-square:before {
|
||||
content: "\e99d";
|
||||
}
|
||||
|
||||
.ai-scopus:before {
|
||||
content: "\e91e";
|
||||
}
|
||||
|
||||
.ai-scopus-square:before {
|
||||
content: "\e91f";
|
||||
}
|
||||
|
||||
.ai-semantic-scholar:before {
|
||||
content: "\e96e";
|
||||
}
|
||||
|
||||
.ai-semantic-scholar-square:before {
|
||||
content: "\e96c";
|
||||
}
|
||||
|
||||
.ai-springer:before {
|
||||
content: "\e928";
|
||||
}
|
||||
|
||||
.ai-springer-square:before {
|
||||
content: "\e99b";
|
||||
}
|
||||
|
||||
.ai-ssrn:before {
|
||||
content: "\e916";
|
||||
}
|
||||
|
||||
.ai-ssrn-square:before {
|
||||
content: "\e917";
|
||||
}
|
||||
|
||||
.ai-stackoverflow:before {
|
||||
content: "\e920";
|
||||
}
|
||||
|
||||
.ai-stackoverflow-square:before {
|
||||
content: "\e921";
|
||||
}
|
||||
|
||||
.ai-viaf:before {
|
||||
content: "\e933";
|
||||
}
|
||||
|
||||
.ai-viaf-square:before {
|
||||
content: "\e934";
|
||||
}
|
||||
|
||||
.ai-wiley:before {
|
||||
content: "\e926";
|
||||
}
|
||||
|
||||
.ai-wiley-square:before {
|
||||
content: "\e927";
|
||||
}
|
||||
|
||||
.ai-zenodo:before {
|
||||
content: "\e911";
|
||||
}
|
||||
|
||||
.ai-zotero:before {
|
||||
content: "\e962";
|
||||
}
|
||||
|
||||
.ai-zotero-square:before {
|
||||
content: "\e932";
|
||||
}
|
||||
|
||||
/* Duplication of the FontAwesome style classes using 'ai' in place of 'fa'. */
|
||||
.ai-lg {
|
||||
font-size: 1.33333em;
|
||||
line-height: 0.75em;
|
||||
vertical-align: -.0667em;
|
||||
}
|
||||
|
||||
.ai-xs {
|
||||
font-size: .75em;
|
||||
}
|
||||
|
||||
.ai-sm {
|
||||
font-size: .875em;
|
||||
}
|
||||
|
||||
.ai-1x {
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
.ai-2x {
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
.ai-3x {
|
||||
font-size: 3em;
|
||||
}
|
||||
|
||||
.ai-4x {
|
||||
font-size: 4em;
|
||||
}
|
||||
|
||||
.ai-5x {
|
||||
font-size: 5em;
|
||||
}
|
||||
|
||||
.ai-6x {
|
||||
font-size: 6em;
|
||||
}
|
||||
|
||||
.ai-7x {
|
||||
font-size: 7em;
|
||||
}
|
||||
|
||||
.ai-8x {
|
||||
font-size: 8em;
|
||||
}
|
||||
|
||||
.ai-9x {
|
||||
font-size: 9em;
|
||||
}
|
||||
|
||||
.ai-10x {
|
||||
font-size: 10em;
|
||||
}
|
||||
|
||||
.ai-fw {
|
||||
text-align: center;
|
||||
width: 1.25em;
|
||||
}
|
||||
|
||||
.ai-ul {
|
||||
list-style-type: none;
|
||||
margin-left: 2.5em;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.ai-ul>li {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.ai-li {
|
||||
left: -2em;
|
||||
position: absolute;
|
||||
text-align: center;
|
||||
width: 2em;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
.ai-border {
|
||||
border: solid 0.08em #eee;
|
||||
border-radius: .1em;
|
||||
padding: .2em .25em .15em;
|
||||
}
|
||||
|
||||
.ai-pull-left {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.ai-pull-right {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.ai.ai-pull-left {
|
||||
margin-right: .3em;
|
||||
}
|
||||
|
||||
.ai.ai-pull-right {
|
||||
margin-right: .3em;
|
||||
}
|
||||
|
||||
.ai-stack {
|
||||
display: inline-block;
|
||||
height: 2em;
|
||||
line-height: 2em;
|
||||
position: relative;
|
||||
vertical-align: middle;
|
||||
width: 2.5em;
|
||||
}
|
||||
|
||||
.ai-stack-1x,
|
||||
.ai-stack-2x {
|
||||
left: 0;
|
||||
position: absolute;
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.ai-stack-1x {
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
.ai-stack-2x {
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
.ai-inverse {
|
||||
color: #fff;
|
||||
}
|
||||
115
_extensions/schochastics/academicons/assets/css/size.css
Normal file
115
_extensions/schochastics/academicons/assets/css/size.css
Normal file
|
|
@ -0,0 +1,115 @@
|
|||
.ai-tiny {
|
||||
font-size: 0.5em;
|
||||
}
|
||||
|
||||
.ai-scriptsize {
|
||||
font-size: 0.7em;
|
||||
}
|
||||
|
||||
.ai-footnotesize {
|
||||
font-size: 0.8em;
|
||||
}
|
||||
|
||||
.ai-small {
|
||||
font-size: 0.9em;
|
||||
}
|
||||
|
||||
.ai-normalsize {
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
.ai-large {
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
.ai-Large {
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
||||
.ai-LARGE {
|
||||
font-size: 1.75em;
|
||||
}
|
||||
|
||||
.ai-huge {
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
.ai-Huge {
|
||||
font-size: 2.5em;
|
||||
}
|
||||
|
||||
.ai-1x {
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
.ai-2x {
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
.ai-3x {
|
||||
font-size: 3em;
|
||||
}
|
||||
|
||||
.ai-4x {
|
||||
font-size: 4em;
|
||||
}
|
||||
|
||||
.ai-5x {
|
||||
font-size: 5em;
|
||||
}
|
||||
|
||||
.ai-6x {
|
||||
font-size: 6em;
|
||||
}
|
||||
|
||||
.ai-7x {
|
||||
font-size: 7em;
|
||||
}
|
||||
|
||||
.ai-8x {
|
||||
font-size: 8em;
|
||||
}
|
||||
|
||||
.ai-9x {
|
||||
font-size: 9em;
|
||||
}
|
||||
|
||||
.ai-10x {
|
||||
font-size: 10em;
|
||||
}
|
||||
|
||||
.ai-2xs {
|
||||
font-size: 0.625em;
|
||||
line-height: 0.1em;
|
||||
vertical-align: 0.225em;
|
||||
}
|
||||
|
||||
.ai-xs {
|
||||
font-size: 0.75em;
|
||||
line-height: 0.08333em;
|
||||
vertical-align: 0.125em;
|
||||
}
|
||||
|
||||
.ai-sm {
|
||||
font-size: 0.875em;
|
||||
line-height: 0.07143em;
|
||||
vertical-align: 0.05357em;
|
||||
}
|
||||
|
||||
.ai-lg {
|
||||
font-size: 1.25em;
|
||||
line-height: 0.05em;
|
||||
vertical-align: -0.075em;
|
||||
}
|
||||
|
||||
.ai-xl {
|
||||
font-size: 1.5em;
|
||||
line-height: 0.04167em;
|
||||
vertical-align: -0.125em;
|
||||
}
|
||||
|
||||
.ai-2xl {
|
||||
font-size: 2em;
|
||||
line-height: 0.03125em;
|
||||
vertical-align: -0.1875em;
|
||||
}
|
||||
Binary file not shown.
1859
_extensions/schochastics/academicons/assets/webfonts/academicons.svg
Normal file
1859
_extensions/schochastics/academicons/assets/webfonts/academicons.svg
Normal file
File diff suppressed because it is too large
Load diff
|
After Width: | Height: | Size: 379 KiB |
Binary file not shown.
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue