• This project
    • Loading...
  • Sign in

Зуев Егор / wiki.dev

Logo belkanton
Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • wiki.dev
  • resources
  • assets
  • sass
  • _tables.scss
  • Dan Brown's avatar
    Added table header row styling, made code blocks horizontally scrollbable fixed … · c86a122d ...
    c86a122d Browse Files
    …link popup on firefox
    
    Dan Brown authored 2016-02-22 20:18:08 +0000
_tables.scss 360 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27

table.table {
  width: 100%;
  tr {
    border-bottom: 1px solid #DDD;
  }
  th, td {
    text-align: left;
    border: none;
    padding: $-xs $-xs;
    vertical-align: middle;
  }
  th {
    font-weight: bold;
  }
  tr:hover {
    background-color: #EEE;
  }
}

table {
  max-width: 100%;
  thead {
    background-color: #F8F8F8;
    font-weight: 500;
  }
}