diff --git a/less/_table.less b/less/_table.less new file mode 100644 index 00000000..3a4d3486 --- /dev/null +++ b/less/_table.less @@ -0,0 +1,17 @@ +// specification: https://www.google.com/design/spec/components/data-tables.html + +table { + width: 100%; + font-size: 12px; + thead th { + color: rgba(0, 0, 0, 0.46); + font-weight: 400; + } + td, th { + padding: 10px 15px; + border-bottom: 1px solid #E0E0E0; + } + tbody tr:hover { + background-color: #EEEEEE; + } +} diff --git a/sass/_table.scss b/sass/_table.scss new file mode 100644 index 00000000..317202cd --- /dev/null +++ b/sass/_table.scss @@ -0,0 +1,15 @@ +table { + width: 100%; + font-size: 12px; + thead th { + color: rgba(0, 0, 0, 0.46); + font-weight: 400; + } + td, th { + padding: 10px 15px; + border-bottom: 1px solid #E0E0E0; + } + tbody tr:hover { + background-color: #EEEEEE; + } +}