X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fresources%2Fstatic%2Fcss%2Fsone.css;h=edde5999a4b3c69f3d92ee24e5074a5ca9e6d94a;hb=a336f89f978670477463726eb6789134f225ae2f;hp=9e44830800ecedbf71ec4f75748ed16501376d5f;hpb=d4d356a040c0787b2062c686ee8f02f7b63f0660;p=Sone.git diff --git a/src/main/resources/static/css/sone.css b/src/main/resources/static/css/sone.css index 9e44830..edde599 100644 --- a/src/main/resources/static/css/sone.css +++ b/src/main/resources/static/css/sone.css @@ -1,5 +1,17 @@ /* Sone Main CSS File */ +/* first, override some fproxy rules. */ +#sone .post .reply div,#sone .post .time,#sone .post .delete,#sone .post .show-reply-form + { + font-size: inherit; +} + +#sone form { + margin: 0px; +} + +/* now for the real stuff. */ + #sone { width: 50em; margin: auto; @@ -9,13 +21,14 @@ display: none; } -#sone a { - color: inherit; +#sone a, #sone a:link, #sone a:visited { + color: rgb(28, 131, 191); + font-size: inherit; text-decoration: none; } -#sone a:visited { - color: inherit; +#sone a:active, #sone a:hover { + color: rgb(255, 172, 0); } #sone #sidebar { @@ -25,13 +38,17 @@ #sone .profile-link { font-weight: bold; - color: #23e; + color: rgb(28, 131, 191); } #sone #profile .picture { float: left; } +#sone #profile .edit-profile-link { + font-size: 85%; +} + #sone .nice-name { font-weight: bold; } @@ -54,6 +71,7 @@ #sone .post .text { display: inline; + white-space: pre-wrap; } #sone .post .status-line { @@ -87,10 +105,6 @@ padding: 1ex; } -#sone .post .reply div, #sone .post .time, #sone .post .delete, #sone .post .show-reply-form { - font-size: inherit; /* or else fproxy's css rules will fuck us. */ -} - #sone .post .reply .time { float: none; display: inline; @@ -100,6 +114,12 @@ #sone .post .show-reply-form { display: inline; + color: rgb(28, 131, 191); + cursor: pointer; +} + +#sone .post .show-reply-form:hover { + color: rgb(255, 172, 0); } #sone .post .show-reply-form:before { @@ -117,6 +137,12 @@ #sone .post .create-reply { clear: both; + background-color: #eef; + padding: 0.5ex; +} + +#sone .post .create-reply.light button { + display: none; } #sone h1 { @@ -130,6 +156,6 @@ font-weight: bold; } -#sone input.createpost.default, input.create-reply.default { +#sone input.createpost.default, input.reply-input.default { color: #888; -} \ No newline at end of file +}