diff options
author | Chris Xiong <chirs241097@gmail.com> | 2024-07-25 02:13:55 -0400 |
---|---|---|
committer | Chris Xiong <chirs241097@gmail.com> | 2024-07-25 02:13:55 -0400 |
commit | 45abe858762eb9c83f49dc08cd7dffc77e062949 (patch) | |
tree | 4d69e50706858ca532544827952ca64c9c138670 | |
parent | 2bdad73cd617bea54dc0e365d216c9f5b7689ec2 (diff) | |
download | web-45abe858762eb9c83f49dc08cd7dffc77e062949.tar.xz |
Add css for notekins.
-rw-r--r-- | notekins/nksext.css | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/notekins/nksext.css b/notekins/nksext.css new file mode 100644 index 0000000..05c22e6 --- /dev/null +++ b/notekins/nksext.css @@ -0,0 +1,37 @@ +span.left { + display: table-cell; + text-align: left; + text-overflow: ellipsis; + overflow: hidden; + white-space: nowrap; +} +span.right { + display: table-cell; + text-align: right; + white-space: nowrap; + min-width: 12em; +} +div.imgc { + background-size: cover; + background-position: 50% 50%; + flex: 200px; + height: 200px; + margin: 20px; + max-width: 400px; +} +a.imgl { + display: block; + height: 100%; + width: 100%; +} +img.emote { + max-width: 1.3em; + max-height: 1.3em; +} +span.date>a.anch { + padding-left: 0.5em; + opacity: 0; +} +span.date:hover>a.anch { + opacity: initial; +} |