diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-12-10 03:20:06 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-12-10 03:20:06 +0100 |
commit | 4f58504d167743810b89cee1906366ae56896c2f (patch) | |
tree | 9fb73c2459aa919df07f2122692afedb9eae6844 /src/style.css | |
parent | d0c2b2cf706cc46268f690e07ab78d341a56861a (diff) |
Fix sentence spacing and add more abbrs
Diffstat (limited to 'src/style.css')
-rw-r--r-- | src/style.css | 50 |
1 files changed, 27 insertions, 23 deletions
diff --git a/src/style.css b/src/style.css index 3c7527f..70419ed 100644 --- a/src/style.css +++ b/src/style.css @@ -246,30 +246,34 @@ dl { pointer-events: none; } - abbr.api::before { content: 'Application Programming Interface'; } - abbr.ast::before { content: 'Abstract Syntax Tree'; } - abbr.cli::before { content: 'Command-Line Interface'; } - abbr.cpu::before { content: 'Central Processing Unit'; } - abbr.css::before { content: 'Cascading Stylesheets'; } - abbr.cv::before { content: 'Curriculum Vitæ'; } - abbr.ec::before { content: 'Embedded Controller'; } - abbr.gnu::before { content: 'GNU’s Not UNIX'; } - abbr.gsp::before { content: 'German Shorthaired Pointer'; } - abbr.html::before { content: 'Hypertext Markup Language'; } - abbr.it::before { content: 'Information Technology'; } - abbr.js::before { content: 'JavaScript'; } - abbr.led::before { content: 'Light-Emitting Diode'; } - abbr.nas::before { content: 'Network Attached Storage'; } - abbr.pdf::before { content: 'Portable Document Format'; } + abbr.api::before { content: 'Application Programming Interface'; } + abbr.ascii::before { content: 'American Standard Code for Information Interchange'; } + abbr.ast::before { content: 'Abstract Syntax Tree'; } + abbr.cli::before { content: 'Command-Line Interface'; } + abbr.cpu::before { content: 'Central Processing Unit'; } + abbr.css::before { content: 'Cascading Stylesheets'; } + abbr.cv::before { content: 'Curriculum Vitæ'; } + abbr.ec::before { content: 'Embedded Controller'; } + abbr.gnu::before { content: 'GNU’s Not UNIX'; } + abbr.gsp::before { content: 'German Shorthaired Pointer'; } + abbr.html::before { content: 'Hypertext Markup Language'; } + abbr.it::before { content: 'Information Technology'; } + abbr.js::before { content: 'JavaScript'; } + abbr.led::before { content: 'Light-Emitting Diode'; } + abbr.nas::before { content: 'Network Attached Storage'; } + abbr.os::before { content: 'Operating System'; } + abbr.pdf::before { content: 'Portable Document Format'; } abbr.posix::before { content: 'Portable Operating System Interface'; } - abbr.qr::before { content: 'Quick Response'; } - abbr.rgb::before { content: 'Red Green Blue'; } - abbr.sha::before { content: 'Secure Hash Algorithm'; } - abbr.tfa::before { content: 'Two-Factor Authentication'; } - abbr.totp::before { content: 'Time-Based One-Time Password'; } - abbr.uri::before { content: 'Uniform Resource Identifier'; } - abbr.xml::before { content: 'Extensible Markup Language'; } - abbr.yaml::before { content: 'YAML Ain’t Markup Language™'; } + abbr.qr::before { content: 'Quick Response'; } + abbr.rgb::before { content: 'Red Green Blue'; } + abbr.sha::before { content: 'Secure Hash Algorithm'; } + abbr.tfa::before { content: 'Two-Factor Authentication'; } + abbr.totp::before { content: 'Time-Based One-Time Password'; } + abbr.ucb::before { content: 'University of California, Berkeley'; } + abbr.ui::before { content: 'User Interface'; } + abbr.uri::before { content: 'Uniform Resource Identifier'; } + abbr.xml::before { content: 'Extensible Markup Language'; } + abbr.yaml::before { content: 'YAML Ain’t Markup Language™'; } } @media (max-width: 600px) { |