X-Git-Url: http://gitweb.fperrin.net/?a=blobdiff_plain;f=quotes%2Fstatic%2Fquotes%2Fstyle.css;h=efd85c9c2cd5c5fe1bc4f1d8a280ca7bdfdf4b71;hb=51ca3218d251eaaeb4574c6d9c38134974af980e;hp=007cfe18af12eaf92e143b26351cf4f9b20e9a6e;hpb=979f7e231fdda726b78bb00914d4a5e22a1d81b7;p=djsite.git diff --git a/quotes/static/quotes/style.css b/quotes/static/quotes/style.css index 007cfe1..efd85c9 100644 --- a/quotes/static/quotes/style.css +++ b/quotes/static/quotes/style.css @@ -1,18 +1,49 @@ -a { +body { color: black; + background-color: #d6d6d6; + font-family: Calibri, sans-serif; +} + +a { color: black; } + +a:hover { + text-decoration: none; } .quote { - background-color: #ffbd33; - border: 3px solid #ff5733; + background-color: #fccb51; + border: 7px solid darkorange; + border-radius: 15px; padding: 1.5em 2em; - margin: 2em 30em; + margin: 2em auto; + max-width: 500px; } .quote .author { - padding-left: 5em; + text-align: right; } -.quote .author .name { +.quote .author .work_name { font-style: italic; } + +.permalink { + font-size: 0.8em; + text-align: right; +} + +.hidden_details { + /* displayed through Javascript */ + height: 0; + overflow: hidden; + transition: height 3s linear; + /* visibility: hidden; */ + /* opacity: 0; */ + /* transition: opacity 2s linear; */ + +} + +.tag_link { + font-weight: bold; + text-decoration: none; +}