[Org] Repository for my personal website.
css.org descriptions.
resources/css.org
@@ -248,20 +248,31 @@
248
248
#+end_src
249
249
250
250
251
Removed:
* Main content
251
Added:
* TODO Main content
252
252
253
Removed:
The following rule concerns all the content displayed on the page.
253
Added:
The following rules concerns all the content displayed on the
254
Added:
page. Most notably, we hide the mobile navigation buttons, which are
255
Added:
hidden to the left and right of the top navigation bar on the desktop
256
Added:
version.
254
257
255
Removed:
It concerns all children (not all descendants!) of the main ~#content~
256
Removed:
section, except for the title and topnav sections.
258
Added:
#+BEGIN_SRC css
259
Added:
#content {
260
Added:
max-width: 100%; /* This was set to 60em in Emacs 28.1 */
261
Added:
}
262
Added:
p { text-align: justify; }
263
Added:
#+END_SRC
257
264
265
Added:
The following rule concerns all children (not /all/ descendants!) of
266
Added:
the main ~#content~ section, except for the title and topnav sections.
267
Added:
258
268
#+BEGIN_SRC css
269
Added:
259
270
#content > :not(.title, #topnav) {
260
271
line-height: 1.5em;
261
272
width: 60%;
262
273
margin: auto;
263
274
}
264
Removed:
p { text-align: justify; }
275
Added:
265
276
#+END_SRC
266
277
267
278