mirror of
https://github.com/wassname/talk.git
synced 2026-08-16 11:29:31 +08:00
110 lines
1.6 KiB
CSS
110 lines
1.6 KiB
CSS
:root {
|
|
--row-height: 60px;
|
|
}
|
|
|
|
.widget {
|
|
margin: 10px 5px 5px 5px;
|
|
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
|
|
flex: 1;
|
|
background-color: white;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.widget * {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.heading {
|
|
margin: 0;
|
|
padding-left: 10px;
|
|
font-size: 1.5rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.widgetTable {
|
|
border-collapse: collapse;
|
|
user-select: none;
|
|
margin: 5px 15px 15px 15px;
|
|
height: calc(var(--row-height) * 10);
|
|
}
|
|
|
|
.widgetTable + div:after {
|
|
content: '';
|
|
clear: both;
|
|
display: block;
|
|
}
|
|
|
|
.widgetHead p {
|
|
color: rgb(35, 102, 223);
|
|
padding: 10px;
|
|
text-align: left;
|
|
text-transform: capitalize;
|
|
display: inline-block;
|
|
box-sizing: border-box;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.widgetHead p:last-child {
|
|
float: right;
|
|
margin-right: 100px;
|
|
}
|
|
|
|
.rowLinkify {
|
|
cursor: pointer;
|
|
border-bottom: 1px solid lightgrey;
|
|
color: #555;
|
|
height: var(--row-height);
|
|
padding: 10px;
|
|
}
|
|
|
|
.rowLinkify:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.rowLinkify:hover {
|
|
background-color: #f8f8f8;
|
|
}
|
|
|
|
.linkToAsset {
|
|
display: inline-block;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.linkToModerate {
|
|
background-color: #e0e0e0;
|
|
padding: 10px 14px;
|
|
text-decoration: none;
|
|
color: black;
|
|
float: right;
|
|
margin-left: 15px;
|
|
}
|
|
|
|
.linkToModerate:hover {
|
|
background-color: #ccc;
|
|
}
|
|
|
|
.lede {
|
|
font-size: 0.9em;
|
|
color: #aaa;
|
|
}
|
|
|
|
.assetTitle {
|
|
color: #555;
|
|
text-decoration: none;
|
|
font-size: 1.2em;
|
|
font-weight: normal;
|
|
margin: 0;
|
|
}
|
|
|
|
.assetTitle:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.widgetCount {
|
|
color: #555;
|
|
font-size: 1.3em;
|
|
font-weight: 400;
|
|
float: right;
|
|
margin-top: 7px;
|
|
}
|