33 lines
513 B
CSS
33 lines
513 B
CSS
.-buttonReset {
|
|
color: var(--font-color);
|
|
border: none;
|
|
background: inherit;
|
|
background-color: transparent; /* IE 11 */
|
|
padding: 0;
|
|
font: inherit;
|
|
line-height: inherit;
|
|
text-align: inherit;
|
|
}
|
|
|
|
.-buttonAsLink {
|
|
composes: -buttonReset;
|
|
cursor: pointer;
|
|
color: var(--link-color);
|
|
user-select: text;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.addMain {
|
|
composes: -buttonAsLink;
|
|
}
|
|
|
|
.table {
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.tdAndTh {
|
|
border: 1px solid #dddddd;
|
|
text-align: left;
|
|
padding: 8px;
|
|
}
|