1
0
mirror of https://github.com/mbirth/tcl_update_db.git synced 2024-09-20 01:03:26 +01:00
tcl_update_db/assets/style.css

167 lines
2.4 KiB
CSS
Raw Normal View History

2017-12-28 23:46:12 +00:00
:root {
--mdc-theme-primary: #1b5e20;
--mdc-theme-primary-light: #4c8c4a;
--mdc-theme-primary-dark: #003300;
2017-12-28 23:46:12 +00:00
--mdc-theme-secondary: #f9a825;
--mdc-theme-secondary-light: #ffd95a;
--mdc-theme-secondary-dark: #c17900;
2017-12-28 23:46:12 +00:00
}
.mdc-toolbar .mdc-tab {
color: var(--mdc-theme-text-secondary-on-primary, rgba(255, 255, 255, 0.7));
}
.mdc-toolbar .mdc-tab--active {
color: var(--mdc-theme-text-primary-on-primary, white);
}
.mdc-toolbar .mdc-tab-bar__indicator {
background-color: var(--mdc-theme-secondary, #ff4081);
}
2017-12-16 19:17:11 +00:00
body {
font-family: sans-serif;
}
2018-02-17 00:25:07 +00:00
body.timeline {
background-color: #eee;
}
2018-01-07 21:20:32 +00:00
main {
2018-02-17 00:25:07 +00:00
overflow: auto;
2018-01-07 21:20:32 +00:00
}
.panel {
margin-top: 70px;
}
.nofiles {
color: #888;
}
#tooltip {
background-color: white;
z-index: 200;
position: absolute;
display: none;
max-width: 70%;
}
.tooltip-card__primary {
padding: 1rem;
}
.tooltip-card__supporting-text {
padding: 0 1rem 8px 1rem;
}
#tooltip h1 {
font-weight: bold;
margin: 0;
}
2017-12-16 18:42:24 +00:00
table td+td {
2017-12-16 19:17:11 +00:00
border-left: 1px dashed silver;
text-align: center;
2017-12-16 18:42:24 +00:00
}
th, td {
2017-12-16 18:42:24 +00:00
font-family: monospace;
white-space: nowrap;
2017-12-16 18:42:24 +00:00
}
th.ref {
2017-12-16 19:17:11 +00:00
font-weight: bold;
}
2017-12-16 18:42:24 +00:00
td.empty {
color: silver;
}
2017-12-16 22:06:19 +00:00
tr:hover {
background-color: #ddd;
}
td.fullonly {
color: #88f;
}
2018-02-17 00:25:07 +00:00
.info-card {
background-color: #ffe;
border-radius: 4px 4px;
width: 80%;
margin: 20px auto;
padding: 12px;
}
.info-card div {
font-size: 1.1em;
}
.info-card .title {
font-weight: bold;
font-size: 1.3em;
padding-bottom: 0.5em;
}
.info-card .material-icons {
vertical-align: top;
}
2018-02-17 00:25:07 +00:00
.release-card {
background-color: white;
border-radius: 12px 4px;
width: 80%;
margin: 20px auto;
padding: 12px;
}
.release-card .version {
font-weight: bold;
font-size: 1.5em;
display: table-cell;
}
.release-card .date {
display: table-cell;
padding-left: 2em;
}
.release-card .date span {
font-weight: bold;
}
.release-card .devices {
display: table-cell;
padding-left: 2em;
}
.release-card .devices span {
font-weight: bold;
}
.release-card .lastreleased {
}
.app-main {
text-align: center;
}
.app-card {
background-color: white;
width: 200px;
margin: 20px 10px;
padding: 12px;
text-align: center;
display: inline-block;
word-break: break-word;
}
.app-card .app-name {
font-weight: bold;
}
.app-card .app-name a {
text-decoration: none;
color: black;
}