Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
gagolews committed Aug 9, 2022
1 parent df15209 commit c48b161
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 7 deletions.
22 changes: 18 additions & 4 deletions devel/sphinx/_static/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -97,15 +97,29 @@ ol.arabic li {
}


img.img-left-align-always {
float: left;
margin-right: 16px;
margin-bottom: 16px;
border-radius: 0;
}

img.img-right-align-always {
float: right;
margin-left: 16px;
margin-bottom: 16px;
border-radius: 0;
}

@media (max-width: 480px) {
.rst-content section > img.img-left-align {
img.img-left-align {
display: block;
margin-left: auto;
margin-right: auto;
border-radius: 0;
}

.rst-content section > img.img-right-align {
img.img-right-align {
display: block;
margin-left: auto;
margin-right: auto;
Expand All @@ -114,14 +128,14 @@ ol.arabic li {
}

@media not (max-width: 480px) {
.rst-content section > img.img-left-align {
img.img-left-align {
float: left;
margin-right: 16px;
margin-bottom: 16px;
border-radius: 0;
}

.rst-content section > img.img-right-align {
img.img-right-align {
float: right;
margin-left: 16px;
margin-bottom: 16px;
Expand Down
5 changes: 2 additions & 3 deletions devel/sphinx/index.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
stringx: Drop-in replacements for base R string functions powered by stringi
============================================================================

.. epigraph::
English is the native language for only 5% of the World population.
Also, only 17% of us can understand this text. Moreover, the Latin alphabet
is the main one for merely 36% of the total. The early computer era,
Expand All @@ -15,8 +16,6 @@ stringx: Drop-in replacements for base R string functions powered by stringi
`stringi <https://stringi.gagolewski.com/>`_,
they are fast, reliable, and portable across different platforms.

-- by `Marek Gagolewski <https://www.gagolewski.com/>`_


`R <https://www.r-project.org/>`_'s ambitions go far beyond being merely the
"free software environment for statistical computing and graphics".
Expand Down Expand Up @@ -109,7 +108,7 @@ either Version 2 or Version 3, see


.. toctree::
:maxdepth: 1
:maxdepth: 2
:caption: Reference Manual
:glob:

Expand Down

0 comments on commit c48b161

Please sign in to comment.