diff options
author | Tim Keller <tjkeller.xyz> | 2025-05-23 21:46:20 -0500 |
---|---|---|
committer | Tim Keller <tjkeller.xyz> | 2025-05-23 21:46:20 -0500 |
commit | 865911f8ffdac7d1d9773570216c0bd35fc601d9 (patch) | |
tree | 2c29ff9cfe78d95e095a39163ade4e83e4d56b92 /static/style.css | |
download | mintube-865911f8ffdac7d1d9773570216c0bd35fc601d9.tar.xz mintube-865911f8ffdac7d1d9773570216c0bd35fc601d9.zip |
initial commit
Diffstat (limited to 'static/style.css')
-rw-r--r-- | static/style.css | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css new file mode 100644 index 0000000..d9e461f --- /dev/null +++ b/static/style.css @@ -0,0 +1,67 @@ +html { + background: #000; + color: #fff; +} + +body { + margin: 0; +} + +body, pre { + font-family: "Roboto", sans-serif; +} + +#player { + display: block; + width: 100vw; + height: 90vh; + max-height: 80vw; + margin: 1rem auto; + box-sizing: border-box; +} + +#title { + margin: .5rem; +} + +button { + margin: .5rem; + background: #222; + color: #fff; + cursor: pointer; + border: 0; + border-radius: .25rem; + padding: .5rem; +} + +#details, #comments { + padding: 0 1rem; +} + +.replies { + margin-left: 2rem; +} + +a { + color: lightblue; +} + +.comment { + background: #191919; + border-radius: .25rem; + margin: .5rem 0; + padding: .5rem; +} +.comment .author { + text-decoration: none; +} +.comment .date { + color: #aaa; + font-size-adjust: .4; +} +.comment .body { + margin-left: .5rem; +} +.replies .comment { + background: #ffffff0a +} |