diff options
Diffstat (limited to 'content/css/blog.css')
| -rw-r--r-- | content/css/blog.css | 170 |
1 files changed, 170 insertions, 0 deletions
diff --git a/content/css/blog.css b/content/css/blog.css new file mode 100644 index 0000000..3f3036f --- /dev/null +++ b/content/css/blog.css @@ -0,0 +1,170 @@ +/* +body { + margin: 0 0 200px 0; +} +*/ + +section#content { + padding: 1%; + width: 60%; + display: table-cell; + opacity: 1; +} + +aside#left { + width: 20%; + padding: 0 calc(0.1 * 20%) 0 calc(0.1 * 20%); + min-width: 20%; +} + +aside#right { + width: 20%; + padding: 0 calc(0.1 * 20%) 0 calc(0.1 * 20%); + min-width: 20%; +} + +aside#left, aside#right { + display: table-cell; +} + +div.art, div.boxleft, div.boxright { + margin: 0 0 20px 0; + background-color: white; + box-shadow: 0px 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); + padding: 30px; + text-align: center; + opacity: 1; +} + +div#content div.contents { + display: none; +} + +div#content div.art > div.section { + padding: 1% 0 0 0; + width: 95%; + margin: 2%; +} + +ul, ol, dl { + list-style-type: none; + padding: 0; +} + +table ol, +table ul, +table dl { + list-style-position: inside; + text-align: left; +} + +h1 a, h1 a:hover, h1 a:visited, +h2 a, h2 a:hover, h2 a:visited, +h3 a, h3 a:hover, h3 a:visited, +h4 a, h4 a:hover, h4 a:visited, +h5 a, h5 a:hover, h5 a:visited, +h6 a, h6 a:hover, h6 a:visited { + text-decoration: none; + color: black; +} + +div.section div.responsive-table { + width: 80%; + text-align: center; + margin: 0 0 1em 0; + padding: 0 0 0 7%; +} + +div.section div.responsive-table > table { + width: 90%; + margin: 0 5% 1em 5%; + padding: 0; + border-collapse: collapse; + border-spacing: 0; +} + +div.section th, +div.section td { + text-align: center; + padding: 8px; +} + +div.section th.field-name { + white-space:nowrap; +} + +div.responsive-table { + overflow-x:auto; +} + +div.section tr:nth-child(even) { + background-color: #cde2e5 +} + +div.section > h1 { + background-color: #cde2e5; + display: table; + text-align: left; + width: 95%; + font-size: 1.53em; + padding: 5px 0 5px 10px; + margin-bottom: 1.17em; + box-shadow: 0px 4px 8px 0 rgba(0, 0, 0, 0.2), + 0 6px 20px 0 rgba(0, 0, 0, 0.19); +} + +div.section > h2 { + margin: 0 0 1.17em 5%; + border-bottom: 1px dashed #2196ff; + display: table; + text-align: left; + font-size: 1.17em; + padding: 5px 10px 5px 10px; +} + +div.section p { + text-align: justify; +} + +div.section > p { + width: 80%; + text-indent: 3em; + margin: 0 0 1em 7%; + text-align: justify; +} + +div.section > ul, +div.section > ol, +div.section > dl { + width: calc(80% - 2em); + margin: 0 0 0 7%; + text-align: justify; + padding-left: 1em; +} + +div.section > dl > dt, +div.section > dl > dd { + float: left; + width: 50%; + padding: 0; + margin: 0 0 1em 0; +} + +div.section > ul li > p, +div.section > ol li > p, +div.section > dl dt > p{ + margin: 0 0 1em 0; +} + +div.section > ul li, +div.section > ol li { + margin: 0 0 1em 2em; +} + +div.section ul { + list-style-type: disc; +} + +div.section ol { + list-style-type: decimal; +} |
