2022-02-11 14:04:23 +01:00
|
|
|
/* || general styles */
|
|
|
|
|
|
|
|
html {
|
2022-02-15 21:25:15 +01:00
|
|
|
font-family: monospace, sans-serif;
|
|
|
|
font-weight: thin;
|
2022-02-11 14:04:23 +01:00
|
|
|
}
|
|
|
|
|
2022-02-15 00:59:23 +01:00
|
|
|
#comments > a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2022-02-17 14:17:10 +01:00
|
|
|
time {
|
|
|
|
display:inline-block;
|
|
|
|
font-size: 0.7em;
|
|
|
|
color:#b4b5ba;
|
|
|
|
}
|
|
|
|
|
2022-02-12 18:49:42 +01:00
|
|
|
article {
|
2022-02-15 21:25:15 +01:00
|
|
|
font-family: monospace, sans-serif;
|
2022-02-12 18:49:42 +01:00
|
|
|
color: #fff;
|
|
|
|
background:#313543;
|
|
|
|
display: grid;
|
|
|
|
grid-template-areas:
|
|
|
|
"profile header "
|
|
|
|
"profile content"
|
|
|
|
"footer footer";
|
|
|
|
grid-template-columns: 1fr 3fr;
|
|
|
|
gap: 0.5em;
|
2022-02-15 21:25:15 +01:00
|
|
|
width: 40em;
|
2022-02-12 18:49:42 +01:00
|
|
|
padding: 1em 0.25em 0em 0.25em;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
article a {
|
|
|
|
color: #4d9fdb;
|
2022-02-11 14:04:23 +01:00
|
|
|
}
|
|
|
|
|
2022-02-12 18:49:42 +01:00
|
|
|
|
|
|
|
article header {
|
|
|
|
width:100%;
|
|
|
|
grid-area: header;
|
2022-02-17 14:17:10 +01:00
|
|
|
text-align:right;
|
2022-02-11 14:04:23 +01:00
|
|
|
}
|
|
|
|
|
2022-02-12 18:49:42 +01:00
|
|
|
article header summary {
|
|
|
|
font-weight: 300;
|
|
|
|
width:100%;
|
2022-02-11 14:04:23 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-02-17 14:17:10 +01:00
|
|
|
article header time {
|
|
|
|
padding-right:1em;
|
|
|
|
}
|
|
|
|
|
2022-02-12 18:49:42 +01:00
|
|
|
article aside {
|
|
|
|
grid-area: profile;
|
|
|
|
text-align:center;
|
2022-02-15 21:25:15 +01:00
|
|
|
overflow-wrap: anywhere;
|
2022-02-11 14:04:23 +01:00
|
|
|
}
|
|
|
|
|
2022-02-12 18:49:42 +01:00
|
|
|
article aside h1 {
|
2022-02-15 21:25:15 +01:00
|
|
|
font-size: 1em;
|
2022-02-12 18:49:42 +01:00
|
|
|
font-weight: 300;
|
2022-02-15 21:25:15 +01:00
|
|
|
padding:0.25em; margin-bottom:0;
|
2022-02-12 18:49:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
article aside h2 {
|
2022-02-15 21:25:15 +01:00
|
|
|
font-size: 0.8em;
|
2022-02-12 18:49:42 +01:00
|
|
|
font-weight: 200;
|
2022-02-15 21:25:15 +01:00
|
|
|
padding:0.25em; margin:0;
|
|
|
|
}
|
|
|
|
|
|
|
|
article aside h2 > a {
|
|
|
|
color: #fff;
|
|
|
|
font-style: oblique;
|
|
|
|
}
|
|
|
|
|
|
|
|
article aside h2 > a:before {
|
|
|
|
content: "@";
|
2022-02-12 18:49:42 +01:00
|
|
|
}
|
2022-02-11 14:04:23 +01:00
|
|
|
|
2022-02-12 18:49:42 +01:00
|
|
|
article aside img {
|
|
|
|
max-width: 100px;
|
2022-02-11 14:04:23 +01:00
|
|
|
}
|
|
|
|
|
2022-02-15 21:25:15 +01:00
|
|
|
article > aside > div {
|
2022-02-17 14:17:10 +01:00
|
|
|
|
2022-02-15 21:25:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
article > aside > div > time {
|
2022-02-17 14:17:10 +01:00
|
|
|
|
2022-02-15 21:25:15 +01:00
|
|
|
}
|
|
|
|
|
2022-02-12 18:49:42 +01:00
|
|
|
article section {
|
|
|
|
grid-area: content;
|
|
|
|
}
|
|
|
|
|
2022-02-14 18:47:15 +01:00
|
|
|
article > footer {
|
2022-02-12 18:49:42 +01:00
|
|
|
grid-area: footer;
|
2022-02-14 18:47:15 +01:00
|
|
|
background: #282c37;
|
2022-02-12 18:49:42 +01:00
|
|
|
}
|
|
|
|
|
2022-02-14 18:47:15 +01:00
|
|
|
article > footer > ul {
|
2022-02-12 18:49:42 +01:00
|
|
|
width: 100%;
|
|
|
|
display: grid;
|
|
|
|
grid-template-areas:
|
2022-02-14 18:47:15 +01:00
|
|
|
"replies favs boosts";
|
|
|
|
grid-template-columns: 1fr 1fr 1fr;
|
2022-02-17 17:40:43 +01:00
|
|
|
gap:0em;
|
|
|
|
list-style-type: none;
|
2022-02-11 14:04:23 +01:00
|
|
|
}
|
|
|
|
|
2022-02-15 00:59:23 +01:00
|
|
|
article > footer > ul > li:before {
|
|
|
|
padding:0 1em;
|
|
|
|
|
2022-02-14 18:47:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
article > footer > ul > li.replies {
|
2022-02-12 18:49:42 +01:00
|
|
|
grid-area: replies;
|
2022-02-14 18:47:15 +01:00
|
|
|
|
2022-02-11 14:04:23 +01:00
|
|
|
}
|
|
|
|
|
2022-02-17 17:40:43 +01:00
|
|
|
article > footer > ul > li.replies:before {
|
|
|
|
content: '\1F4AC';
|
|
|
|
}
|
|
|
|
|
2022-02-14 18:47:15 +01:00
|
|
|
article > footer > ul > li.favs {
|
2022-02-12 18:49:42 +01:00
|
|
|
grid-area: favs;
|
2022-02-11 14:04:23 +01:00
|
|
|
}
|
2022-02-12 18:49:42 +01:00
|
|
|
|
2022-02-17 17:40:43 +01:00
|
|
|
article > footer > ul > li.favs:before {
|
|
|
|
content:'\2B50';
|
|
|
|
}
|
|
|
|
|
2022-02-14 18:47:15 +01:00
|
|
|
article > footer > ul > li.boosts {
|
2022-02-12 18:49:42 +01:00
|
|
|
grid-area: boosts;
|
|
|
|
}
|
|
|
|
|
2022-02-17 17:40:43 +01:00
|
|
|
article > footer > ul > li.boosts:before {
|
|
|
|
content:'\1F680';
|
|
|
|
}
|
2022-02-12 18:49:42 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
strong, b {
|
|
|
|
font-weight: 300;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hashtag {
|
|
|
|
text-decoration:none;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|