123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356 |
- /*
- _ _ ____ _
- _| || |_/ ___| ___ _ __ _ __ ___ | |
- |_ .. _\___ \ / _ \ '_ \| '_ \ / _ \| |
- |_ _|___) | __/ |_) | |_) | (_) |_|
- |_||_| |____/ \___| .__/| .__/ \___/(_)
- |_| |_|
- Personal Social Web.
- Copyright (C) The #Seppo contributors. All rights reserved.
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- :root {
- color-scheme: light dark;
- --bgRough: hsl(30,0%,93%);
- --bgFairway: hsl(30, 45%, 91%);
- --bg-color-entry: hsl(30, 45%, 88%);
- --btn-color: var(--bgRough);
- --text-color: hsl(30, 50%, 44%);
- --link-color: hsl(200, 50%, 44%);
- --link-color: hsl(206, 62%, 48%); /* https://css.land/lch/ from text-color -> blue*/
- --GW-dotted-underline-background-image: url('data:image/gif;base64,R0lGODlhBAACAPAAMYiIiP///ywAAAAABAACAAACBAQShgUAOw==');
- --GW-link-underline-gradient-line-color: var(--link-color);
- }
- @media (prefers-color-scheme: dark) {
- :root {
- --bgRough: #111;
- --bgFairway: #111;
- --bg-color-entry: #222;
- --btn-color: var(--bg-color-entry);
- --text-color: hsl(30, 35%, 59%);
- }
- }
- .script-active .noscript {
- display: none;
- }
- html {
- font-family: sans-serif;
- line-height: 1.5;
- font-size: 1rem;
- }
- html, input, textarea, .awesomplete > ul, .awesomplete > ul > li {
- background: var(--bgRough);
- color: var(--text-color);
- }
- body, .awesomplete > ul > li:hover {
- background: var(--bgFairway);
- }
- h1, .h1 {
- font-size: 2rem;
- font-weight: bold;
- line-height: 4rem;
- }
- h2, .h2 {
- font-size: 1.8rem;
- font-weight: bold;
- margin: 0;
- }
- body {
- margin: auto;
- max-width: 704px;
- min-height: 500px;
- padding: 8px;
- }
- #header {
- }
- div#banner {
- /* background-size: 100% 100%; */
- background-color: darkgrey;
- border-radius: 1ex;
- height: 240px;
- margin: -8px -8px 0px -8px;
- max-width: 720px;
- }
- #banner #banner-img {
- height: 240px;
- position: relative;
- }
- /* img rather than background because 3rd paty actors bring the url late */
- #banner #banner-img img {
- border-radius: 8px;
- height: 240px;
- position: absolute;
- width: 720px;
- }
- div#title {
- }
- div#avatar {
- position: relative;
- top: -.5em;
- }
- #avatar img {
- background-color: darkgrey;
- border-radius: 48px;
- border: 3px solid var(--bgRough);
- float: right;
- height: 96px;
- position: relative;
- width: 96px;
- }
- form {
- margin: .5rem 0;
- }
- #footer {
- margin-top: 2rem;
- }
- #footer, .footer {
- margin-bottom: 0;
- }
- #footer > a > img {
- border: none;
- height: 27px;
- opacity: 0.6;
- }
- .manytags body {
- max-width: initial;
- }
- a:any-link {
- /* gentle underlines https://www.gwern.net/Design */
- /* background-image: linear-gradient(var(--GW-link-underline-gradient-line-color), var(--GW-link-underline-gradient-line-color)); */
- /* background-image: var(--GW-dotted-underline-background-image); */
- /* background-position: 0% 100%;
- background-repeat: repeat-x;
- background-size: 1px 0.1ex; */
- border-bottom: 0.125em dotted var(--GW-link-underline-gradient-line-color);
- text-decoration: none;
- }
- button, .btn, input[type="checkbox"], input[type="submit"], a:any-link, label {
- color: var(--link-color);
- cursor: pointer;
- }
- button, .btn, a.btn, input, textarea {
- background: var(--btn-color);
- border-radius: .6em;
- border: 1px solid darkgrey;
- display: inline-block;
- font: inherit;
- margin: .25em;
- opacity: 99%; /* workaround disappering in dark mode */
- padding: .4em .6em;
- }
- button {
- min-width: 10em;
- }
- input, textarea {
- width: calc(100% - 2 * .5em - .75em); /* also makes the subscribe button line wrap */
- }
- textarea {
- height: initial;
- }
- button[name='delete_edit'] {
- background: hsla(0, 99%, 50%, 0.75);
- }
- p#tags.categories > a.tag[data-count="1"] {
- display:none;
- }
- p#tags {
- display:none;
- }
- #do-post {
- margin-top: -1rem;
- }
- #notifyme {
- padding: .25rem;
- }
- #entries {
- list-style: none;
- padding: 0;
- }
- #entries > li {
- clear: both;
- background: var(--bg-color-entry);
- border-radius: 0.5em;
- margin: 1.5em 0;
- padding: 0.35em;
- }
- #entries > li > h3 {
- margin: 0;
- }
- #entries > li > h3 img {
- display: none;
- border: 1px dotted black;
- float: right;
- max-height: 120px;
- max-width: 120px;
- }
- p {
- hyphens: auto;
- -moz-hyphens: auto;
- overflow: hidden;
- overflow-wrap: break-word;
- padding: 0.1em;
- -webkit-hyphens: auto;
- word-break: break-word;
- word-wrap: break-word;
- }
- p#tags {
- line-height: 1;
- }
- #snippets button {
- border: none;
- min-width: 1.5em;
- padding: .2em;
- margin: .05em;
- background: initial;
- }
- #snippets button:hover {
- background: rgba(255,255,255,0.5);
- }
- #snippets button.border {
- border: thin solid lightgrey;
- }
- /* a[data-count="1"] { display: none } */
- img.qrcode {
- background: hsl(115, 100%, 35%);
- height: 27px;
- width: 27px;
- }
- #banner form {
- padding: .25em;
- margin-top: -240px;
- }
- label {
- text-transform: capitalize;
- }
- table {
- width: 100%;
- }
- .text-left { text-align: left; }
- .text-right { text-align: right; }
- .text-center { text-align: center; }
- /* https://www.w3schools.com/Css/css_float.asp */
- .clearfix::after {
- clear: both;
- content: "";
- display: table;
- }
- @media only screen and (max-width: 600px) {
- .hidden-xs { display: none; }
- }
- .hidden-logged-in { display:initial; }
- .logged-in .hidden-logged-in { display:none; }
- .visible-logged-in { display:none; }
- .logged-in .visible-logged-in { display:initial; }
- .hidden-logged-out { display:initial; }
- .logged-out .hidden-logged-out { display:none; }
- .visible-logged-out { display:none; }
- .logged-out .visible-logged-out { display:initial; }
- /* This is a workaround for Browsers that insert additional br tags.
- * See http://purl.mro.name/safari-xslt-br-bug */
- .rendered.type-text br { display:none; }
- .rendered.type-text br.br { display:inline; }
- div.awesomplete {
- display: block;
- }
- .awesomplete > ul > li[aria-selected="true"] {
- background: hsl(30, 60%, 83%);
- }
- .awesomplete mark, .awesomplete li:hover mark, .awesomplete li[aria-selected="true"] mark {
- background: inherit;
- color: inherit;
- text-decoration: underline;
- }
- @media (prefers-color-scheme: dark) {
- .awesomplete > ul > li[aria-selected="true"] {
- background: hsl(30, 60%, 23%);
- }
- img {
- filter: grayscale(20%);
- }
- }
- .disabled, .btn.disabled, [disabled], .btn[disabled] {
- filter: grayscale(100%);
- opacity: 60%;
- pointer-events: none;
- }
- #head-grid {
- display: flex;
- justify-content: space-between;
- margin-bottom: calc(8.5rem - 4px);
- margin-top: calc(-15.5rem + 4px);
- padding: .25rem;
- }
- #head-grid a {
- height: 1.6em;
- }
- #form_notifyme input {
- width: initial;
- }
- #notify ul {
- list-style: none;
- padding: 0;
- }
- #notify li {
- padding: .25em;
- }
- #notify input {
- /* display: inline; */
- height: initial;
- min-height: initial;
- width: initial;
- }
- #notify input[type="submit"] {
- }
- #notify li.actor img {
- border-radius: 1rem;
- height: 2rem;
- margin-bottom: -.5rem;
- margin-left: .5rem;
- margin-right: .5rem;
- width: 2rem;
- }
- *.shaded *.noshade {
- display: none;
- }
- *.shaded *.noshade.highlight {
- display: initial;
- }
- li iframe {
- display: none;
- width: calc(100% - 2px);
- }
- li.highlight iframe {
- display: initial;
- }
|