more tweaks to style and articles

master
Alessandro Mauri 4 years ago
parent 3de7050a9c
commit a21cccc8ec
  1. 14
      src/makesoftware.md
  2. 23
      src/styles.css

@ -47,3 +47,17 @@ The benefit is that such system would have a negligible impact on the CPU as
the complexity of the routing determines the work that the server would do, the complexity of the routing determines the work that the server would do,
as a normal user would just use the server to switch sound cards on the fly as a normal user would just use the server to switch sound cards on the fly
the performance impact is near zero. the performance impact is near zero.
## An alternative to fprintd
Libfprint is good enough, it currently is the only open source way to access
fingerprint sensors, but the only two programs that I know use it are
fprintd (from the same devs) and fingerprint-gui, both are not good.
Fprintd could have been great as it is simple and implements a PAM module, but
it requires polkit for some unknown reason, as for fingerprint-gui try to get
it working.
How should the alternative work? Kinda like fprintd but with just 2 components:
- A fingerprint database manager to add, remove, modify and verify fingerprints
- A PAM module for authentication
Everything else can be done with a combination of those two components and shome
shell glue, you don't really need anything else.

@ -1,6 +1,6 @@
/* Global options */ /* Global options */
* { * {
text-align: center; text-align: justify;
font-family: monospace; font-family: monospace;
} }
@ -28,13 +28,20 @@ tr:nth-child(odd) {
background-color: #dcdcdc; background-color: #dcdcdc;
} }
/* List styles */
li {
/*font-size: 1.25em;*/
}
/* Paragraphs and text */ /* Paragraphs and text */
p { p {
font-size: 1.25em; /*font-size: 1.25em;*/
padding-left: 20px;
padding-right: 20px;
} }
body { body {
width: 80%; width: 70%;
margin: 0 auto; margin: 0 auto;
background-color: #f5fffa; background-color: #f5fffa;
color: black; color: black;
@ -47,10 +54,14 @@ html {
} }
/* Headings and footer */ /* Headings and footer */
h1, h2, h3, h4, h5, h6 { h1 {
text-decoration: underline; text-decoration: underline;
} }
h1, h2, h3, h4, h5, h6 {
text-align: center;
}
footer { footer {
border: 1px solid black; border: 1px solid black;
} }
@ -58,7 +69,7 @@ footer {
footer p { footer p {
padding: 10px; padding: 10px;
margin: 0px; margin: 0px;
font-size: 1em; /*font-size: 1em;*/
} }
/* Header style */ /* Header style */
@ -99,7 +110,7 @@ footer p {
height: 80px; height: 80px;
text-align: left; text-align: left;
line-height: 80px; line-height: 80px;
font-size: 1.25em; /*font-size: 1.25em;*/
border: 1px solid black; border: 1px solid black;
overflow: hidden; overflow: hidden;
} }

Loading…
Cancel
Save