소스 검색

Tables (#13)

* Add styling for tables

By default tables have no lines and no separation between cells which can lead to confusion.
Vlad Ionescu 7 년 전
부모
커밋
0aab556131
3개의 변경된 파일31개의 추가작업 그리고 0개의 파일을 삭제
  1. 6 0
      exampleSite/content/posts/theme-demo.md
  2. 0 0
      static/css/style.min.css
  3. 25 0
      static/less/style.less

+ 6 - 0
exampleSite/content/posts/theme-demo.md

@@ -26,6 +26,12 @@ _This is italic text_
 
 ~~Deleted text~~
 
+| Heading | Another heading |
+| :----:  | :-------------: |
+|  text   |      text       |
+|  text   |      text       |
+|  text   |      text       |
+
 > Block quotes are
 > written like so.
 >

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
static/css/style.min.css


+ 25 - 0
static/less/style.less

@@ -119,6 +119,31 @@ blockquote {
   font-style: italic;
 }
 
+th, td {
+  padding: 1.6rem;
+}
+table {
+  border-collapse: collapse;
+}
+table td, table th {
+  border: 2px solid @darker-fg-color;
+}
+table tr:first-child th {
+  border-top: 0;
+}
+table tr:last-child td {
+  border-bottom: 0;
+}
+table tr td:first-child,
+table tr th:first-child {
+  border-left: 0;
+}
+table tr td:last-child,
+table tr th:last-child {
+    border-right: 0;
+}
+
+
 img {
   max-width: 100%;
 }

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.