Sass version !
This commit is contained in:
parent
d0add0508c
commit
c2ee11f407
16 changed files with 1404 additions and 1 deletions
35
sass/03-tables.scss
Normal file
35
sass/03-tables.scss
Normal file
|
@ -0,0 +1,35 @@
|
|||
@import "00-config";
|
||||
/* ----------------------------- */
|
||||
/* ==tables */
|
||||
/* ----------------------------- */
|
||||
|
||||
table,
|
||||
.table {
|
||||
width: 100%;
|
||||
max-width : 100%;
|
||||
table-layout: fixed;
|
||||
border-collapse: collapse;
|
||||
vertical-align: top;
|
||||
border: 1px solid #ccc;
|
||||
}
|
||||
.table {
|
||||
display: table;
|
||||
}
|
||||
table#recaptcha_table,
|
||||
table.table-auto {
|
||||
table-layout:auto;
|
||||
}
|
||||
caption {
|
||||
padding: $small-value;
|
||||
color: #555;
|
||||
font-style: italic;
|
||||
}
|
||||
td,
|
||||
th {
|
||||
padding: 0.3em 0.8em;
|
||||
border: 1px #aaa dotted;
|
||||
vertical-align: top;
|
||||
min-width: $medium-value;
|
||||
cursor: default;
|
||||
text-align: left;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue