diff options
author | Thomas Lange <code@nerdmind.de> | 2017-09-02 15:37:19 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-09-02 15:37:19 +0200 |
commit | 4addfb603e88642674003469c147eb8d5debbd96 (patch) | |
tree | abae2ac6055699228dac09b7555a8cd91fb53aa1 /template/standard/rsrc | |
parent | c503f83d169fe15e10e2d97fd4ece9cdc884e436 (diff) | |
download | blog-4addfb603e88642674003469c147eb8d5debbd96.tar.gz blog-4addfb603e88642674003469c147eb8d5debbd96.tar.xz blog-4addfb603e88642674003469c147eb8d5debbd96.zip |
Multiple <section> elements were replaced by simple <div> elements. If a container element is only used for the CSS and has no semantic meaning, then a <section> element is definitely wrong for this purpose.
Diffstat (limited to 'template/standard/rsrc')
-rw-r--r-- | template/standard/rsrc/main.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/template/standard/rsrc/main.css b/template/standard/rsrc/main.css index ed50b9b..ea13a11 100644 --- a/template/standard/rsrc/main.css +++ b/template/standard/rsrc/main.css @@ -25,12 +25,12 @@ body{font-family:Ruda,sans-serif;font-size:0.7rem;line-height:1.2rem;} #container{max-width:45rem;margin:1rem auto;border:0.05rem solid #AAA;background:#FFF;} -main,#main-header > section{padding:1rem;box-sizing:border-box;} +main,#main-header > div{padding:1rem;box-sizing:border-box;} /*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/ /* Header /*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/ -#main-header > section{overflow:hidden;} +#main-header > div{overflow:hidden;} #main-logo{height:1.75rem;display:block;} /*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/ @@ -152,7 +152,7 @@ thead > tr > td, th > td{text-align:center;} /* Responsive Level #2 /*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/ @media only screen and (max-width:37.5rem) { - main,#main-header > section{padding:1rem;} + main,#main-header > div{padding:1rem;} #main-navi{padding:0.25rem 1rem;} #main-navi a{border:0.05rem solid transparent;} #main-navi a:hover, #main-navi a:focus{border:0.05rem solid #BBB;} |