mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Added pandoc table styles to specimen
This commit is contained in:
parent
2c8a324324
commit
2ae22c2e3b
@ -202,6 +202,29 @@ Vestibulum vitae orci quis ante viverra ultricies ut eget turpis. Sed eu
|
||||
lectus dapibus, eleifend nulla varius, lobortis turpis. In ac hendrerit nisl,
|
||||
sit amet laoreet nibh.
|
||||
|
||||
<table>
|
||||
<colgroup>
|
||||
<col width="30%">
|
||||
<col width="70%">
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr class="header">
|
||||
<th>Table</th>
|
||||
<th>with colgroups (Pandoc)</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Lorem</td>
|
||||
<td>ipsum dolor sit amet.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Sed sagittis</td>
|
||||
<td>eleifend rutrum. Donec vitae suscipit est.</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
## Colors
|
||||
|
||||
### Primary colors
|
||||
|
@ -1224,14 +1224,6 @@ hr {
|
||||
opacity: 0;
|
||||
z-index: -1; }
|
||||
|
||||
.md-button {
|
||||
float: right;
|
||||
margin-top: 9px;
|
||||
font-size: 13px;
|
||||
padding-left: 2.6rem;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase; }
|
||||
|
||||
@media print {
|
||||
|
||||
.md-typeset a::after {
|
||||
|
@ -84,11 +84,6 @@
|
||||
<div class="md-content">
|
||||
<article class="md-content__inner md-typeset">
|
||||
{% block content %}
|
||||
{% if config.edit_uri %}
|
||||
<a class="md-button md-button--edit" href="{{ page.edit_url }}">
|
||||
Edit
|
||||
</a>
|
||||
{% endif %}
|
||||
{% if not "\x3ch1 id=" in page.content %}
|
||||
<h1>{{ page.title | default(config.site_name, true)}}</h1>
|
||||
{% endif %}
|
||||
@ -106,6 +101,11 @@
|
||||
Material
|
||||
</a>
|
||||
theme.
|
||||
{% if config.edit_uri %}
|
||||
<a href="{{ page.edit_url }}">
|
||||
Edit this page
|
||||
</a>
|
||||
{% endif %}
|
||||
</small>
|
||||
</article>
|
||||
</div>
|
||||
|
@ -21,14 +21,5 @@
|
||||
////
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// Rules
|
||||
// Nothing to see here, move along
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
.md-button {
|
||||
float: right;
|
||||
margin-top: 9px;
|
||||
font-size: 13px;
|
||||
padding-left: 2.6rem;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
@ -168,14 +168,6 @@
|
||||
<!-- Block: content -->
|
||||
{% block content %}
|
||||
|
||||
<!-- Edit button, if URL was defined -->
|
||||
{% if config.edit_uri %}
|
||||
<a class="md-button md-button--edit"
|
||||
href="{{ page.edit_url }}">
|
||||
Edit
|
||||
</a>
|
||||
{% endif %}
|
||||
|
||||
<!--
|
||||
This is a nasty hack that checks whether the content contains
|
||||
a h1 headline. If it doesn't, the page title (or respectively
|
||||
@ -202,6 +194,13 @@
|
||||
Material
|
||||
</a>
|
||||
theme.
|
||||
|
||||
<!-- Edit button, if URL was defined -->
|
||||
{% if config.edit_uri %}
|
||||
<a href="{{ page.edit_url }}">
|
||||
Edit this page
|
||||
</a>
|
||||
{% endif %}
|
||||
</small>
|
||||
</article>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user