mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-31 19:02:59 +01:00
DOCS: Add basic styles for tables and resources section to Changeset docs - https://github.com/citizenos/citizenos-fe/issues/535
This commit is contained in:
parent
e483b91916
commit
78ea888cb7
2 changed files with 27 additions and 7 deletions
|
@ -148,4 +148,9 @@ This is an atext. An atext has two parts: text and attribs. The text is just the
|
|||
|
||||
The attribs are again a bunch of operators like .ops in the changeset was. But these operators are only + operators. They describe which part of the text has which attributes
|
||||
|
||||
For more information see /doc/easysync/easysync-notes.txt in the source.
|
||||
## Resources / further reading
|
||||
|
||||
Detailed information about the changesets & Easysync protocol:
|
||||
|
||||
* Easysync Protocol - [/doc/easysync/easysync-notes.pdf](https://github.com/ether/etherpad-lite/blob/develop/doc/easysync/easysync-notes.pdf)
|
||||
* Etherpad and EasySync Technical Manual - [/doc/easysync/easysync-full-description.pdf](https://github.com/ether/etherpad-lite/blob/develop/doc/easysync/easysync-full-description.pdf)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
body{
|
||||
body {
|
||||
border-top: solid #44b492 5pt;
|
||||
line-height:150%;
|
||||
font-family: 'Quicksand',sans-serif;
|
||||
|
@ -8,28 +8,43 @@ body{
|
|||
padding: 20px;
|
||||
}
|
||||
|
||||
a{
|
||||
a {
|
||||
color: #555;
|
||||
}
|
||||
|
||||
h1{
|
||||
h1 {
|
||||
color: #44b492;
|
||||
line-height:100%;
|
||||
}
|
||||
|
||||
a:hover{
|
||||
a:hover {
|
||||
color: #44b492;
|
||||
}
|
||||
|
||||
pre{
|
||||
pre {
|
||||
background-color: #e0e0e0;
|
||||
padding:20px;
|
||||
}
|
||||
|
||||
code{
|
||||
code {
|
||||
background-color: #e0e0e0;
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
table, th, td {
|
||||
text-align: left;
|
||||
border: 1px solid gray;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
th {
|
||||
padding: 0.5em;
|
||||
background: #EEE;
|
||||
}
|
||||
|
||||
td {
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue