diff options
| author | Núbio C. Hott <bio@brigadadigital.tec.br> | 2026-04-27 21:43:40 -0300 |
|---|---|---|
| committer | Núbio C. Hott <bio@brigadadigital.tec.br> | 2026-04-27 21:43:40 -0300 |
| commit | a0190a6ce6cdba78bb67b23c0233de0f32bd39f3 (patch) | |
| tree | 4384af75256d19430be8178146beb5524ec1baa6 /themes/nojs/static/css/main.css~ | |
| download | website-a0190a6ce6cdba78bb67b23c0233de0f32bd39f3.tar.gz website-a0190a6ce6cdba78bb67b23c0233de0f32bd39f3.tar.bz2 website-a0190a6ce6cdba78bb67b23c0233de0f32bd39f3.zip | |
Início do repositório
Diffstat (limited to 'themes/nojs/static/css/main.css~')
| -rw-r--r-- | themes/nojs/static/css/main.css~ | 219 |
1 files changed, 219 insertions, 0 deletions
diff --git a/themes/nojs/static/css/main.css~ b/themes/nojs/static/css/main.css~ new file mode 100644 index 0000000..e682bf4 --- /dev/null +++ b/themes/nojs/static/css/main.css~ @@ -0,0 +1,219 @@ +/* + Name: nojs style css + Date: Abr 2024 + Description: layout for HTML5 and CSS3 goodness. + Version: 1.0 + License: GPLv3 <https://www.gnu.org/licenses/gpl-3.0.html> + Licensed by: Brigada Digital <https://brigadadigital.tec.br> + Original author: Núbio Cicarini Hott <bio@brigadadigital.tec.br> +*/ + +/* Imports */ +@import url("reset.css"); +@import url("pygment.css"); +@import url("typogrify.css"); +@import url("fonts.css"); + +/* Body */ +body { + background: #000000; + color: #000000; + font-size: 87.5%; /* Base font size: 14px */ + font-family: 'DejaVu Sans Mono', 'Dejavu Sans', 'Dejavu Serif'; + font-size: 1.05em; + line-height: 1.8em; + text-align: left; + margin: 0; +} + +/* Headings */ +h1 {font-size: 2em;} +h2 {font-size: 1.571em;} /* 22px */ +h3 {font-size: 1.429em;} /* 20px */ +h4 {font-size: 1.286em;} /* 18px */ +h5 {font-size: 1.143em;} /* 16px */ +h6 {font-size: 1em;} /* 14px */ +h1, h2, h3, h4, h5, h6 { + font-weight: 400; + line-height: 1.429em; + margin-top: 5px; + margin-bottom: 5px; +} +h3, h4, h5, h6 {margin-top: .8em;} + +/* Line */ +hr {border: 1px solid #CC0000;} + +/* Button */ +.button { + color: #FFF; + background-color: #000000; + border: 1px solid #CC0000; + padding: 15px 36px; + text-align: center; + text-decoration: underline; + display: inline-block; +} +.button:hover { + color: #FF0000; + background-color: #000000; + border: 1px solid #FF0000; + text-decoration: underline; +} + +dl {margin: 0 0 1.5em 0;} +dt {font-weight: bold;} +dd {margin-left: 1.5em;} + +/* Tables */ +table {margin: .5em auto 1.5em auto; width: 98%;} + + /* Thead */ + thead th {padding: .5em .4em; text-align: left;} + thead td {} + + /* Tbody */ + tbody td {padding: .5em .4em;} + tbody th {} + + tbody .alt td {} + tbody .alt th {} + + /* Tfoot */ + tfoot th {} + tfoot td {} + + +/* Anchors */ +a {outline: 0;} +a img {border: 0px; text-decoration: none;} +a:link, a:visited {color: #990000; text-decoration: underline;} +a:hover, a:active { + color: #FF0000; + text-decoration: underline; +} + +/* HTML5 tags */ +header, section, footer, +aside, nav, article, figure { + display: block; +} + +/* banner */ +header#banner { + text-align: center; + padding-top: 10px; +} +header#banner a img { border: 0; text-decoration: none; } + +/* MenuMain Nav */ +nav#menu { + font-size: 1.1em; + text-align: center; + +/* border-radius: 10px; + -moz-border-radius: 10px; + -webkit-border-radius: 10px; +*/ +} +nav#menu ul { + list-style: none; +} +nav#menu li { + float: center; + display: inline-block; + padding: 0 15px 5px 0; +} +nav#menu a:link, nav#menu a:visited { + color: #FFF; + text-decoration: underline; + font-weight: bold; +} + +nav#menu a:hover, nav#menu a:active, nav#menu .active a:link, nav#menu .active a:visited { + color: #CC0000; + text-decoration: underline; + text-shadow: none !important; + font-weight: bold; +} + +/* Contençt */ +#content { + overflow: hidden; + background: #FFF; + padding: 10px 170px 10px 170px; + +/* border-radius: 10px; + -moz-border-radius: 10px; + -webkit-border-radius: 10px; +*/ +} + +#contentinfo { + font-size: .8em; + line-height: 1.3em; + overflow: hidden; + color: #FFF; + text-align: center; + margin: 0; + padding: 20px 170px 20px 170px; +} + +/* Post */ +#post-list { +} + +.post-info { +} + +.hentry{ +} + +.entry-title{ +} + +.entry-content{ +} + +.vcard.author{ +} + +/* Home */ +#home { + background-color: #FFF; +} +#home section { + padding-top: 5px; + padding-bottom: 5px; +} +#home div { + padding: 5px 170px 5px 170px; +} + +.image img { + padding: 30px; + text-align: center; +} + +/*Features*/ +.features a { + color: #000000; + text-decoration: underline; +} +.features a:link { + color: #000000; + text-decoration: underline; +} +.features a:hover { + color: #FFFFFF; + text-decoration: underline; +} +.features p { + padding-bottom: 10px; +} + +.container { + display: grid; + grid-template-columns: 1fr 1fr; + grid-gap: 10px; +} |
