TheDesk Riina (ver.1)

This commit is contained in:
cutls
2018-02-18 14:43:11 +09:00
parent 51097abce6
commit 4588b646a9
16 changed files with 321 additions and 63 deletions

View File

@@ -42,6 +42,56 @@ iframe {
padding-left: 5px;
padding-right: 2px;
word-break: break-all;
width: 100%;
height: 100%;
display: grid;
grid-template-columns: 43px 1fr 0.5fr;
grid-template-areas: 'notice notice notice' 'icon display_name acct' 'icon toot toot' 'icon date_via date_via' 'actions actions actions';
}
.area-notice {
margin:2px;
grid-area: notice;
}
.area-icon {
width:40px;
margin:2px;
grid-area: icon;
}
.area-display_name {
height:1.2em;
margin:2px;
grid-area: display_name;
white-space: nowrap;
text-overflow: ellipsis;
}
.area-acct {
margin:2px;
grid-area: acct;
text-align:right;
white-space: nowrap;
text-overflow: ellipsis;
}
.area-toot {
margin:2px;
grid-area: toot;
}
.area-date_via {
grid-area: date_via;
}
.area-actions {
margin:2px;
grid-area: actions;
}
.action i{
font-size:1rem;
}
.gray {
color: gray;
@@ -74,10 +124,14 @@ iframe {
vertical-align: middle;
background-color: #777;
border-radius: 10px;
width:70px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
p {
margin: 0;
margin-bottom: 10px;
margin-bottom: 0px;
}
.shared {
background-color: #cfd8dc;