X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=sidebyside;f=tpl%2Fdefault%2Fcss%2Fshaarli.css;h=63cf68aceb298c8dde6137da0f2b05751161edf4;hb=19ac80e11ab70218adc70d7f3ad64669a90aab70;hp=0719ccf7190b0dcb0796ea4f2bdc02a332d85aff;hpb=be0404d884c69f28d83d4d5c07e6c50fdd286635;p=github%2Fshaarli%2FShaarli.git diff --git a/tpl/default/css/shaarli.css b/tpl/default/css/shaarli.css index 0719ccf7..63cf68ac 100644 --- a/tpl/default/css/shaarli.css +++ b/tpl/default/css/shaarli.css @@ -2,7 +2,7 @@ * General */ body { - background: url(../img/noise.png) #979797; + background: #c5c5c5; } .strong { @@ -86,6 +86,9 @@ pre { background-color: #1b926c; } +.anchor:target { + padding-top: 40px; +} /** * MENU **/ @@ -93,10 +96,11 @@ pre { position: fixed; top: 0; width: 100%; + --height: 50px; background: #1b926c; -webkit-font-smoothing: antialiased; /* Hack to transition with auto height: http://stackoverflow.com/a/8331169/1484919 */ - max-height: 2.1em; + max-height: 45px; transition: max-height 0.5s; overflow: hidden; z-index: 999; @@ -104,7 +108,7 @@ pre { /* Chrome bugfix: with 100% height, it only displays the first element. */ .pure-menu-item { - height: inherit; + height: 45px; } .shaarli-menu.open { @@ -112,28 +116,40 @@ pre { transition: max-height 0.75s; } -.pure-menu-selected { - background: #b0ddce; +.head-logo { + float: left; + margin: 0 5px 0 0; } .pure-menu-link, .pure-menu-link:visited, .pure-menu-selected .pure-menu-link, .pure-menu-selected .pure-menu-link:visited { - color: #b0ddce; + padding: 0.8em 1em; + color: #f5f5f5; } -.pure-menu-link:hover, -.pure-menu-selected .pure-menu-link:hover { - color: #d1fff0; +.pure-menu-link:hover, .pure-menu-link:focus, +.pure-menu-selected .pure-menu-link:hover, +.pure-menu-selected .pure-menu-link:focus { + color: #fff; background: transparent; } +.pure-menu-item:hover::after { + margin: -4px auto 0 auto; + display: block; + content:""; + background: #fff; + height: 4px; + width: 100%; +} + .menu-toggle { width: 34px; - height: 34px; + height: 45px; position: absolute; - top: 0; + top: 5px; right: 0; display: none; } @@ -168,162 +184,147 @@ pre { } } -/** - * Header - */ -#header { - width: 100%; - height: 150px; - background: url(../img/noise.png), #1fa67a url(../img/logo2.png) no-repeat fixed 10px 2.5em; +.header-buttons { + text-align: right; } -#header h1 { - position: fixed; - float: left; - margin: 45px 0 0 125px; - width: 55%; - height: 100px; +#linkcount { + color: #252525; + font-size: 0.8em; } -#header h1 a, #header h1 a:visited { - /* https://css-tricks.com/centering-css-complete-guide/#vertical-inline-multiple */ - display: -ms-flexbox; - display: flex; - flex-direction: column; - justify-content: center; +@media screen and (min-width: 64em) { + #linkcount { + position: absolute; + right: 5px; + } +} - overflow: hidden; - height: 100px; - color: #b0ddce; - text-decoration: none; - z-index: 1; +#search, #search-linklist { + text-align: center; + width: 100%; +} - font-family: Roboto Slab, Arial, sans-serif; - font-size: 1.2em; +#search input[type="text"], #search-linklist input[type="text"] { + padding: 0 5px; + height: 30px; + width: 260px; + background: #f5f5f5; + border: medium none currentColor; + box-shadow: 0 1px 0 rgba(255, 255, 255, 0.078), 0 1px 1px rgba(0, 0, 0, 0.298) inset; + border-radius: 2px; + color: #252525; } -#header h1 a:hover { - color: #d1fff0; +/* because chrome */ +#search input[type="text"]::-webkit-input-placeholder, +#search-linklist input[type="text"]::-webkit-input-placeholder { + color: #777777; } -.header-buttons { - text-align: right; +#search button, +#search-linklist button { + background: transparent; + border: none; } -#linkcount { - /* position: fixed; */ - position: absolute; - top: 40px; - right: 10px; - color: #b0ddce; - font-size: 0.8em; +#search button { + color: #f5f5f5; } -#search { - /** - * Can't make it work with awesomplete list z-index. Any idea? - * position: fixed; - */ - position: absolute; - top: 60px; - right: 10px; - width: 30%; - text-align: right; +#search-linklist button { + color: #252525; } -#search input[type="text"] { - margin: 0 0 5px 0; - padding: 5px 5px 3px 15px; - height: 20px; - width: 140px; - transition: width .5s ease; - background: #1b926c; - border: medium none currentColor; - border-radius: 25px; - box-shadow: 0 1px 0 rgba(255, 255, 255, 0.078), 0 1px 4px rgba(0, 0, 0, 0.298) inset; - color: #b0ddce; +#search button:hover, +#search-linklist button:hover { + color: #fff; } -/* because chrome */ -#search input[type="text"]::-webkit-input-placeholder { - color: #b0ddce; +#search-linklist { + padding: 5px 0; } -#search button { - background: transparent; - border: none; - color: #b0ddce; +@media screen and (min-width: 64em) { + #search .searchform, + #search-linklist .searchform { + margin-right: 25px; + text-align: right; + } + + #search .tagfilter, + #search-linklist .tagfilter { + margin-left: 25px; + text-align: left; + } +} +@media screen and (max-width: 64em) { + #search, #search * { + visibility: hidden; + } } -#search button:hover { - color: #fff; +#header-login-form input[type="text"], #header-login-form input[type="password"] { + width: 200px; } -#header-login-form { - height: 0; +.subheader-form { + visibility: hidden; + position: fixed; + width: 100%; text-align: center; background: #1b926c; - transition: 0.3s; -} - -#header-login-form.open { display: block; + z-index: 999; height: 30px; padding: 5px 0; - box-shadow: 0 1px 1px 1px #797979; } -#header-login-form input[type="text"], #header-login-form input[type="password"], #header-login-form .remember-me { +@media screen and (min-width: 64em) { + .subheader-form.open, .subheader-form.open * { + visibility: visible; + } +} + +.subheader-form input[type="text"], .subheader-form input[type="password"], .subheader-form .remember-me { margin: 0 0 5px 0; padding: 5px 5px 3px 15px; height: 20px; - width: 200px; - background: #1fa67a; + width: 20%; + background: #f5f5f5; border: medium none currentColor; - border-radius: 25px; + border-radius: 2px; box-shadow: 0 1px 0 rgba(255, 255, 255, 0.078), 0 1px 4px rgba(0, 0, 0, 0.298) inset; - color: #b0ddce; + color: #252525; } /* because chrome */ -#header-login-form input[type="text"]::-webkit-input-placeholder, -#header-login-form input[type="password"]::-webkit-input-placeholder +.subheader-form input[type="text"]::-webkit-input-placeholder, +.subheader-form input[type="password"]::-webkit-input-placeholder { - color: #b0ddce; + color: #252525; } -#header-login-form .remember-me { +.subheader-form .remember-me { display: inline-block; width: auto; padding: 5px 20px 3px 20px; cursor: pointer; } -#header-login-form .remember-me label, #header-login-form .remember-me input { +.subheader-form .remember-me label, .subheader-form .remember-me input { cursor: pointer; } -#header-login-form input[type="submit"] { +.subheader-form input[type="submit"] { display: inline-block; margin: 0 0 5px 0; height: 25px; width: 100px; background: #0C7653; border: medium none currentColor; - border-radius: 25px; box-shadow: 1px 1px 2px #005C3E, -1px -1px 2px #005C3E; - color: #b0ddce; -} - -#header-login-form input, #header-login-form .remember-me { - transition: visibility 1s, opacity 1s; - visibility: hidden; - opacity: 0; -} - -#header-login-form.open input, #header-login-form.open .remember-me { - visibility: visible; - opacity: 1; + color: #f5f5f5; } .new-version-message { @@ -340,22 +341,47 @@ pre { */ #content { position: relative; - /* Hack-ish way to only shadow the top part. */ - box-shadow: 0 -20px 20px -20px #797979; z-index: 2; - background: url(../img/noise.png) #979797; + margin-top: 45px; } -@media screen and (max-width: 64em) { - #content { - margin: 2.1em 0 0 0; - } +/** + * Plugins additional forms + */ +.toolbar-plugin { + margin: 5px 0; + text-align: center; } -@media screen and (min-width: 64em) { - #content { - /* https://css-tricks.com/fighting-the-space-between-inline-block-elements/ */ - margin-top: -4px; +.toolbar-plugin input[type="text"] { + padding: 0 5px; + height: 30px; + width: 300px; + background: #f5f5f5; + border: medium none currentColor; + box-shadow: 0 1px 0 rgba(255, 255, 255, 0.078), 0 1px 1px rgba(0, 0, 0, 0.298) inset; + border-radius: 2px; + color: #252525; +} + +/* because chrome */ +.toolbar-plugin input[type="text"]::-webkit-input-placeholder { + color: #777777; +} + +.toolbar-plugin input[type="submit"] { + padding: 0 10px; + height: 30px; + background: #f5f5f5; + border: medium none currentColor; + border-radius: 2px; + color: #252525; +} + +@media screen and (max-width: 64em) { + .toolbar-plugin input[type="text"] { + width: 70%; + } } @@ -363,8 +389,6 @@ pre { * CONTENT - LINKLIST PAGING * 64em -> lg */ - - .linklist-filters { margin: 10px 0; color: #252525; @@ -372,13 +396,13 @@ pre { } .linklist-filters a { - padding: 2px 5px; + padding: 5px 8px; text-decoration: none; } .linklist-filters .filter-off { color: #252525; - background: #c8c8c8; + background: #f5f5f5; } .linklist-filters .filter-on { @@ -409,27 +433,28 @@ pre { } .linksperpage a { - padding: 2px 5px; + padding: 5px 5px; text-decoration: none; color: #252525; - background: #c8c8c8; - border: solid 1px #979797; + background: #f5f5f5; +} + +.linksperpage a, .linksperpage input[type="text"] { + display: inline-block; + width: 20px; + text-align: center; } .linksperpage form { display: inline; - margin: 0 10px 0 0; } .linksperpage input[type="text"] { - width: 28px; - height: 16px; + height: 20px; margin: 0; - padding: 3px 5px 3px 8px; - background: #c8c8c8; + padding: 4px 5px 3px 8px; + background: #f5f5f5; border: medium none currentColor; - --border-radius: 25px; - box-shadow: 0 1px 0 rgba(255, 255, 255, 0.078), 0 1px 4px rgba(0, 0, 0, 0.298) inset; color: #252525; font-size: 0.8em; } @@ -438,7 +463,7 @@ pre { * CONTENT - LINKLIST ITEMS */ .linklist-item { - margin: 15px 0; + margin: 0 0 15px 0; background: #f5f5f5; box-shadow: 2px 2px 0.5em #797979; } @@ -449,37 +474,55 @@ pre { } .linklist-item-title { - background: #20b988 url(../img/noise.png); - border-bottom: 1px solid #1b926c; - box-shadow: 1px 1px 0.2em #1b926c; + position: relative; + background: #f5f5f5; +} + +.linklist-item.private .linklist-item-title::before { + position: absolute; + left: 3px; + top: 0; + display: block; + content:""; + background: #F89406; + height: 95%; + width: 2px; + margin-top: 3px; + z-index: 1; } .linklist-item-title h2 { padding: 3px 10px 0 10px; - line-height: 25px; + line-height: 30px; } .linklist-item-title a { font-size: 0.7em; - color: #d0fff0; + color: #252525; text-decoration: none; vertical-align: middle; font-family: Roboto Slab, Arial, sans-serif; } +.linklist-item-title .linklist-link { + font-size: 1.1em; + color: #1b926c; +} + .linklist-item-title .linklist-link:visited { - color: #ddd; + color: #1b926c; } .linklist-item-title a:hover, .linklist-item-title .linklist-link:hover{ - color: #fff; + color: #252525; } .linklist-item-title .label-private { - border: solid 1px #d0fff0; + border: solid 1px #F89406; font-family: Arial, sans-serif; font-size: 0.65em; + color: #F89406; } .linklist-item-title .fold-button { @@ -488,17 +531,49 @@ pre { .linklist-item-editbuttons { float: right; - padding: 5px; + padding: 8px 5px; +} + +.linklist-item-editbuttons * { + display: block; + float: left; + margin: 0 1px; } .linklist-item-editbuttons a { font-size: 1em; } +.edit-link { + font-size: 1.2em; + color: #0b5ea6; +} + +.delete-link { + font-size: 1.3em; + color: #ac2925 !important; +} + .linklist-item-description { + position: relative; padding: 10px; + background: #f5f5f5; font-family: Roboto Slab, Arial, sans-serif; word-wrap: break-word; + color: #252525; + line-height: 1.3em; +} + +.linklist-item.private .linklist-item-description::before { + position: absolute; + left: 3px; + top: 0; + display: block; + content:""; + background: #F89406; + height: 95%; + width: 2px; + z-index: 1; } .linklist-item-description a { @@ -507,28 +582,27 @@ pre { } .linklist-item-description a:hover { - text-shadow: 1px 1px #ddd; + color: #252525; } .linklist-item-description a:visited { - color: #20b988; + color: #14553f; } .linklist-item-thumbnail { + margin-top: 10px; padding: 10px; float: left; } .linklist-item-infos { - padding: 5px 5px 0 5px; - background: #ddd url(../img/noise.png); - border-top: 1px solid #989898; - box-shadow: 1px -1px 0.2em #989898; + padding: 8px 8px 5px 8px; + background: #ddd; color: #252525; } .linklist-item-infos a { - color: #505050; + color: #252525; text-decoration: none; } @@ -537,17 +611,11 @@ pre { } .linklist-item-infos .linklist-item-tags { - margin: 0 0 5px 0; font-size: 0.8em; } -.linklist-item-infos .linklist-item-infos .label-tag { - border: 1px solid #505050; - font-size: 0.9em; -} - -.linklist-item-infos .label-tag:hover { - border: 1px solid #000; +.linklist-item-infos .label-tag { + font-size: 1em; } .linklist-item-infos-dateblock { @@ -567,6 +635,17 @@ pre { font-size: 0.8em; } +.linklist-item-infos .mobile-buttons { + text-align: right; +} + +.linklist-item-infos .linklist-plugin-icon { + display: inline-block; + margin: 0 2px; + width: 16px; + height: 16px; +} + /** 64em -> lg **/ @media screen and (max-width: 64em) { .linklist-item-infos-url { @@ -602,44 +681,56 @@ pre { */ .page-form { margin: 20px 0 0 0; - background: url(../img/noise.png) #1fa67a; - border-radius: 5px; + background: #f5f5f5; box-shadow: 1px 1px 2px #797979; - color: #b0ddce; + color: #252525; + overflow: hidden; } -.page-form h2 { +.page-form .window-title { margin: 0 0 10px 0; padding: 10px 0; width: 100%; - color: #b0ddce; - background: #1b926c; + color: #1b926c; + background: #f5f5f5; text-align: center; - border-radius: 5px 5px 0 0; - border-bottom: 1px solid #797979; } -.page-form h3 { +.page-form .window-title:after { + display: block; + content:""; + background: linear-gradient(to right, #f5f5f5, #1b926c, #f5f5f5); + height: 1px; + width: 80%; + margin: auto; +} + +.page-form .window-subtitle { text-align: center; } .page-form a { - color: #b0ddce; + color: #1b926c; font-weight: bold; } +.page-form p { + padding: 0 10px; + margin: 0; +} + .page-form input[type="text"], .page-form input[type="password"], .page-form textarea { + box-sizing: border-box; margin: 10px 0; padding: 5px 5px 3px 15px; - height: 30px; - width: 80%; - background: #1b926c; - border: medium none currentColor; - border-radius: 25px; - box-shadow: 0 1px 0 rgba(255, 255, 255, 0.078), 0 1px 4px rgba(0, 0, 0, 0.298) inset; - color: #b0ddce; + height: 35px; + width: 90%; + background: #eeeeee; + border: solid 1px #d8d8d8; + border-radius: 2px; + color: #252525; } .page-form textarea { @@ -653,25 +744,44 @@ pre { /* because chrome */ .page-form input[type="text"]::-webkit-input-placeholder, .page-form input[type="password"]::-webkit-input-placeholder { - color: #b0ddce; + color: #777777; } -.page-form input[type="submit"] { +.page-form input[type="submit"], .page-form a.button { margin: 15px 5px; height: 35px; + line-height: 35px; width: 150px; background: #1b926c; - border: medium none currentColor; - border-radius: 25px; - box-shadow: 1px 1px 4px #0C7653, -1px -1px 6px #0C7653, -1px 1px 6px #0C7653, 1px -1px 6px #0C7653; + color: #f5f5f5; + border: none; + box-shadow: 1px 1px 1px #ddd, -1px -1px 6px #ddd, -1px 1px 2px #ddd, 1px -1px 2px #ddd; font-size: 1.2em; - font-weight: bold; - color: #b0ddce; + text-decoration: none; + vertical-align: center; + font-weight: normal; +} + + +.page-form .button.button-red { + background: #ac2925; +} + +@media screen and (min-width: 64em) { + .page-form .submit-buttons { + position: relative; + } + + .page-form .submit-buttons .button.button-red { + position: absolute; + right: 5%; + } } .page-form select { - color: black; + color: #252525; } + /** * PAGE FORM - LIGHT */ @@ -683,16 +793,16 @@ pre { * PAGE FORM - COMPLETE */ .page-form-complete { - #background: #ddd; + #background: #f5f5f5; } .page-form-complete div, .page-form-complete p { - color: #b0ddce; + color: #252525; } .page-form-complete .form-label, .page-form-complete .form-input { position: relative; - height: 60px; + min-height: 60px; } .page-form-complete .form-label label, @@ -714,13 +824,18 @@ pre { } .page-form-complete .label-desc { - font-size: 0.7em; + font-size: 0.8em; } -.page-form section { - margin-top: 20px; +.page-form-complete input[type="text"], +.page-form-complete input[type="password"], +.page-form-complete textarea { + margin: 0; } +.page-form section { + margin: 10px 0 25px 0; +} .page-form table { margin: auto; @@ -729,12 +844,13 @@ pre { .page-form table .order { text-decoration: none; + color: #252525; } .page-form table, .page-form th, .page-form td { border-width: 1px 0; border-style: solid; - border-color: #b0ddce; + border-color: #aaaaaa; } .page-form th, .page-form td { @@ -744,7 +860,7 @@ pre { /* Awesomeplete fix */ .page-form .awesomplete { - width: 80%; + width: 90%; } .page-form .awesomplete input { @@ -784,13 +900,24 @@ pre { text-align: left; margin: 10px 0 0 0; } - + .timezone-continent:after { content:"\a\a"; white-space: pre; } + + .page-form-complete .radio-buttons { + text-align: left; + padding: 5px 15px; + } } +/** + * Page visitor (page form extended) + */ +.page-visitor { + color: #252525; +} #page404 { color: #3f3f3f; @@ -801,168 +928,223 @@ pre { */ #login-form .remember-me { margin: 5px 0; - color: #b0ddce; - font-weight: bold; } /** - * CONTENT - LINKLIST ITEMS + * Search results */ -.linklist-item { - margin: 15px 0; - background: #f5f5f5; - box-shadow: 2px 2px 0.5em #797979; +.search-result a { + color: white; + text-decoration: none; } -.linklist-item-title, .linklist-item-title h2 { - margin: 0; +.search-result .label-tag { + border-color: white; } -.linklist-item-title { - background: #20b988 url(../img/noise.png); - border-bottom: 1px solid #1b926c; - box-shadow: 1px 1px 0.2em #1b926c; +.search-result .label-tag .remove { + border-left: white 1px solid; + padding: 0 0 0 5px; + margin: 0 0 0 5px; } -.linklist-item-title h2 { - padding: 3px 10px 0 10px; - line-height: 25px; +/** + * TOOLS + */ +.tools-item { + margin: 10px 0; } -.linklist-item-title a { - font-size: 0.7em; - color: #d0fff0; - text-decoration: none; - vertical-align: middle; - font-family: Roboto Slab, Arial, sans-serif; +.tools-item .pure-button:hover { + background-image: none; + background-color: #1b926c; + color: #f5f5f5; } -.linklist-item-title .linklist-link:visited { - color: #ddd; +/** + * PLUGIN ADMIN + */ +#pluginform .mobile-row { + font-size: 0.9em; } -.linklist-item-title a:hover, .linklist-item-title .linklist-link:hover{ - color: #fff; +#pluginform .more { + margin-top: 10px; } -.linklist-item-title .label-private { - border: solid 1px #d0fff0; - font-family: Arial, sans-serif; - font-size: 0.65em; +@media screen and (max-width: 64em) { + #pluginform .main-row, #pluginform .main-row td { + border-bottom-style: none; + } + + #pluginform .mobile-row, #pluginform .mobile-row td { + border-top-style: none; + } } -.linklist-item-title .fold-button { - display: none; +/** + * IMPORT + */ +#import-field { + margin: 15px 0; } -.linklist-item-editbuttons { - float: right; - padding: 5px; +/** + * TAG CLOUD + */ +#cloudtag { + padding: 10px; + text-align: center; } -.linklist-item-editbuttons a { - font-size: 1em; +#cloudtag, #cloudtag a { + color: #000; + text-decoration: none; } -.linklist-item-description { - padding: 10px; - font-family: Roboto Slab, Arial, sans-serif; +#cloudtag .count { + color: #7f7f7f; } -.linklist-item-description a { +/** + * Picture wall CSS + */ +#picwall_container { + margin: 0 10px 10px 10px; + color: #252525; + background-color: #f5f5f5; + clear: both; +} + +.picwall_pictureframe { + margin: 2px; + background-color: #f5f5f5; + z-index: 5; + position: relative; + display: table-cell; + vertical-align: middle; + width: 90px; + height: 90px; + overflow: hidden; + text-align: center; + float: left; +} + +.b-lazy { + -webkit-transition: opacity 500ms ease-in-out; + -moz-transition: opacity 500ms ease-in-out; + -o-transition: opacity 500ms ease-in-out; + transition: opacity 500ms ease-in-out; + opacity: 0; +} +.b-lazy.b-loaded { + opacity: 1; +} + +.picwall_pictureframe img { + max-width: 100%; + height: auto; + color: transparent; +} /* Adapt the width of the image */ + +.picwall_pictureframe a { text-decoration: none; - color: #1b926c; } -.linklist-item-description a:hover { - text-shadow: 1px 1px #ddd; +/* CSS to show title when hovering an image - no javascript required. */ +.picwall_pictureframe span.info { + display: none; + font-family: Arial, sans-serif; } -.linklist-item-description a:visited { - color: #20b988; +.picwall_pictureframe:hover span.info { + display: block; + position: absolute; + top: 0; + left: 0; + width: 90px; + height: 90px; + font-weight: bold; + font-size: 9pt; + color: #f5f5f5; + text-align: left; + background-color: rgba(0, 0, 0, 0.8); } -.linklist-item-infos { - padding: 5px; - background: #ddd url(../img/noise.png); - border-top: 1px solid #989898; - box-shadow: 1px -1px 0.2em #989898; - color: #252525; +/** + * DAILY + */ +.daily-desc { + color: #7f7f7f; font-size: 0.8em; } -.linklist-item-infos a { - color: #505050; +.daily-about a { + color: #343434; text-decoration: none; } -.linklist-item-infos a:hover { - color: #000; +.daily-about a:hover { + color: #7f7f7f; } -.linklist-item-tags { - margin: 0 0 5px 0; -} - -.label-tag { - border: 1px solid #505050; - font-size: 1em; +.daily-about h3:before, .daily-about h3:after { + display: block; + content:""; + background: linear-gradient(to right, #d5d4d4, #252525, #d5d4d4); + height: 1px; + width: 90%; + margin: 10px auto; } -.label-tag:hover { - border: 1px solid #000; +.daily-entry { + padding: 0 10px; } -.linklist-plugin-icon { - width: 13px; - height: 13px; +.daily-entry .daily-entry-title:after { + display: block; + content:""; + background: linear-gradient(to right, #fff, #515151, #fff); + height: 1px; + width: 70%; + margin: 5px auto; } -.linklist-item-infos-url { - text-align: right; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; +.daily-entry .daily-entry-title { + margin: 10px 0 0 0; } -/** - * Search results - */ -.search-result a { - color: white; +.daily-entry .daily-entry-title a { + color: #000; text-decoration: none; } -.search-result .label-tag { - border-color: white; +.daily-entry .daily-entry-description { + padding: 5px 5px 0 5px; + font-size: 0.9em; + text-align: justify; + word-wrap: break-word; } -.search-result .label-tag .remove { - border-left: white 1px solid; - padding: 0 0 0 5px; - margin: 0 0 0 5px; +.daily-entry .daily-entry-tags { + padding: 0 5px 5px 5px; + font-size: 0.8em; } -/** - * TOOLS - */ -.tools-item { - margin: 10px 0; +.daily-entry-thumbnail { + float: left; + margin: 15px 5px 5px 5px; } -/** - * PLUGIN ADMIN - */ -#pluginform .mobile-row { - font-size: 0.9em; +.daily-entry-description a { + text-decoration: none; + color: #1b926c; } -@media screen and (max-width: 64em) { - #pluginform .main-row, #pluginform .main-row td { - border-bottom-style: none; - } +.daily-entry-description a:hover { + text-shadow: 1px 1px #ddd; +} - #pluginform .mobile-row, #pluginform .mobile-row td { - border-top-style: none; - } -} \ No newline at end of file +.daily-entry-description a:visited { + color: #20b988; +}