tema
This commit is contained in:
parent
7a3b4f9174
commit
72f22d0692
2 changed files with 46 additions and 26 deletions
|
@ -40,8 +40,7 @@ _-- Jon Postel_
|
||||||
|
|
||||||
---
|
---
|
||||||
<style scoped>
|
<style scoped>
|
||||||
ul {font-size: 48px}
|
li {font-size: 40px;}
|
||||||
li small {font-size: 42px;}
|
|
||||||
</style>
|
</style>
|
||||||
# Agenda
|
# Agenda
|
||||||
|
|
||||||
|
@ -55,7 +54,7 @@ li small {font-size: 42px;}
|
||||||
|
|
||||||
---
|
---
|
||||||
<style scoped>
|
<style scoped>
|
||||||
ul {font-size: 30px; margin-top:15px}
|
li {font-size: 30px;}
|
||||||
</style>
|
</style>
|
||||||
# Terminologia
|
# Terminologia
|
||||||
|
|
||||||
|
@ -67,13 +66,12 @@ Ad oggi l'implementazione di OpenPGP più nota (ma se ne stanno diffondendo altr
|
||||||
|
|
||||||
---
|
---
|
||||||
<style scoped>
|
<style scoped>
|
||||||
p {font-size: 32px; margin-top:10px}
|
ul {margin-top: 0;}
|
||||||
ul {font-size: 32px; margin-top:10px}
|
p, li {font-size: 32px;}
|
||||||
ul ul {font-size: 30px; margin:0px}
|
|
||||||
</style>
|
</style>
|
||||||
# "Ecosistema" OpenPGP (1)
|
# "Ecosistema" OpenPGP (1)
|
||||||
|
|
||||||
Lo standard OpenPGP propriamente detto (RFC 9580) definisce principalmente;
|
Lo standard OpenPGP propriamente detto (RFC 9580) definisce principalmente:
|
||||||
- Algoritmi supportati
|
- Algoritmi supportati
|
||||||
- Crittografia simmetrica e asimmetrica
|
- Crittografia simmetrica e asimmetrica
|
||||||
- Hashing e Firma digitale
|
- Hashing e Firma digitale
|
||||||
|
@ -85,7 +83,6 @@ Lo standard OpenPGP propriamente detto (RFC 9580) definisce principalmente;
|
||||||
- Grammatica dei messaggi (_Packet Sequence Composition_)
|
- Grammatica dei messaggi (_Packet Sequence Composition_)
|
||||||
- Raccomandazioni implementative
|
- Raccomandazioni implementative
|
||||||
|
|
||||||
|
|
||||||
---
|
---
|
||||||
# TODO
|
# TODO
|
||||||
|
|
||||||
|
|
|
@ -1,19 +1,47 @@
|
||||||
/* @theme custom */
|
/*
|
||||||
|
* @theme custom
|
||||||
@import 'gaia';
|
*
|
||||||
|
* @auto-scaling true
|
||||||
|
* @size 16:9 1280px 720px
|
||||||
|
* @size 4:3 960px 720px
|
||||||
|
*/
|
||||||
|
|
||||||
section {
|
section {
|
||||||
|
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
|
||||||
|
font-size: 40px;
|
||||||
background-color: #333;
|
background-color: #333;
|
||||||
color: #ccc;
|
color: #ccc;
|
||||||
padding: 15px 25px 0 25px;
|
padding: 15px 25px 0 25px;
|
||||||
margin-bottom:0;
|
margin-bottom:0;
|
||||||
}
|
}
|
||||||
section h1 {
|
section h1 {
|
||||||
|
color: #ccc;
|
||||||
border-bottom: dotted 1px #ccc;
|
border-bottom: dotted 1px #ccc;
|
||||||
margin-bottom: 0;
|
margin: 0;
|
||||||
|
padding-bottom: 5px;
|
||||||
font-size: 45px;
|
font-size: 45px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin: 10px 0 10px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
code {
|
||||||
|
font-family: 'Courier New', Courier, monospace;
|
||||||
|
}
|
||||||
|
th {
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
ul {
|
||||||
|
margin-top:15px;
|
||||||
|
}
|
||||||
|
li {
|
||||||
|
margin-top: 5px;
|
||||||
|
}
|
||||||
|
li ul {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
div.columns {
|
div.columns {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 0;
|
gap: 0;
|
||||||
|
@ -37,11 +65,15 @@ footer {
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
color: #bbb;
|
color: #bbb;
|
||||||
height: 38px;
|
height: 38px;
|
||||||
line-height: 10px;
|
line-height: 15px;
|
||||||
margin: 0 80px 0 0;
|
margin: 0 60px 0 0;
|
||||||
padding: 16px 0 0 20px;
|
padding: 16px 0 0 20px;
|
||||||
border-top: 0px;
|
border-top: 0px;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
}
|
}
|
||||||
/* page numbering */
|
/* page numbering */
|
||||||
section::after {
|
section::after {
|
||||||
|
@ -99,23 +131,14 @@ section.whoami #col-right {
|
||||||
}
|
}
|
||||||
section.whoami ul {
|
section.whoami ul {
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
margin-left: 0;
|
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
flex-grow: 1;
|
|
||||||
font-size: 33px;
|
font-size: 35px;
|
||||||
}
|
}
|
||||||
section.whoami li {
|
section.whoami li {
|
||||||
padding-bottom: 10px;
|
padding-bottom: 10px;
|
||||||
}
|
}
|
||||||
section.whoami li ul{
|
|
||||||
font-size: 25px;
|
|
||||||
padding-left: 15px;
|
|
||||||
}
|
|
||||||
section.whoami p#license {
|
section.whoami p#license {
|
||||||
font-size: 25px;
|
font-size: 30px;
|
||||||
margin-top: 0px;
|
margin-top: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
th {
|
|
||||||
font-weight: normal;
|
|
||||||
}
|
|
Loading…
Reference in a new issue