mirror of
https://github.com/MaJerle/lwmem.git
synced 2025-01-13 21:42:53 +08:00
Add custom style for table and links
This commit is contained in:
parent
901e774ea3
commit
ffb64b1234
@ -3,9 +3,10 @@ LwMEM documentation!
|
||||
|
||||
LwMEM is lightweight dynamic memory manager optimized for embedded systems.
|
||||
|
||||
.. class::center
|
||||
.. rst-class:: center
|
||||
.. rst-class:: index_links
|
||||
|
||||
:ref:`download_library` · `Github <https://github.com/MaJerle/lwmem>`_
|
||||
:ref:`download_library` · `Github <https://github.com/MaJerle/lwmem>`_
|
||||
|
||||
Features
|
||||
^^^^^^^^
|
||||
|
29
docs/static/css/common.css
vendored
29
docs/static/css/common.css
vendored
@ -1,3 +1,32 @@
|
||||
/* Center aligned text */
|
||||
.center {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* Paragraph with main links on index page */
|
||||
.index_links {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* Index links a */
|
||||
.index-links a {
|
||||
display: inline-block;
|
||||
border: 1px solid #0E4263;
|
||||
padding: 3px 10px;
|
||||
background: #2980B9;
|
||||
border-radius: 4px;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
.index-links a:hover {
|
||||
background: #0E4263;
|
||||
}
|
||||
|
||||
/* Table header p w/0 margin */
|
||||
table thead th {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
table thead th p {
|
||||
margin: 0;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user