diff --git a/content/static/datenspuren/2016/style/style.css b/content/static/datenspuren/2016/style/style.css index ba5875852..82e5f60fa 100644 --- a/content/static/datenspuren/2016/style/style.css +++ b/content/static/datenspuren/2016/style/style.css @@ -15,17 +15,14 @@ body { } nav { - position: fixed; - top: 0; - /*left: 1100px;*/ - right: 0; + position: relative; text-align: center; z-index: 5; /* on top of
*/ - padding-top: 10ex; + padding-top: 4ex; } nav ul { - width: 60ex; - height: 35ex; + /*width: auto; + height: auto;*/ list-style-type: none; margin: 0 auto; padding: 0; @@ -33,34 +30,16 @@ nav ul { /*font-size: 80%;*/ } -/** Circular menu **/ - -nav ul > *:nth-of-type(1) { - transform: rotate(-0deg) translate(-30ex) rotate(0deg); -} - -nav ul > *:nth-of-type(2) { - transform: rotate(-20deg) translate(-30ex) rotate(20deg); -} - -nav ul > *:nth-of-type(3) { - transform: rotate(-40deg) translate(-30ex) rotate(40deg); -} - -nav ul > *:nth-of-type(4) { - transform: rotate(-60deg) translate(-30ex) rotate(60deg); -} - nav li { - width: 7.5ex; - height: 7.5ex; display: inline-block; - border: 0.5px solid #ffffff; - border-radius: 50%; /*background-color: #ffffff;*/ - position: absolute; + position: relative; } nav li a { + width: 7.5ex; + height: 7.5ex; + border: 0.5px solid #ffffff; + border-radius: 50%; display: inline-block; color: #ffffff; font-weight: bold; @@ -137,8 +116,9 @@ article { margin-bottom: 0; padding-top: 16px; padding-bottom: 16px; - padding-left: 90px; - max-width: 960px; + padding-left: 5%; + /*max-width: 960px;*/ + max-width: 90%; /*background: url('../images/style/tsd4.png') center top no-repeat;*/ } article > * { @@ -321,3 +301,46 @@ article .center a img { article dl dd a { word-wrap: break-word; } + +/** Circular menu **/ + +@media (min-width: 1000px) { + nav { + position: fixed; + top: 0; + right: 0; + padding-top: 10ex; + } + + nav ul { + width: 40ex; + height: 35ex; + } + + nav li { + position: absolute; + right: 0; + } + + nav ul > *:nth-of-type(1) { + transform: rotate(-0deg) translate(-30ex) rotate(0deg); + } + + nav ul > *:nth-of-type(2) { + transform: rotate(-20deg) translate(-30ex) rotate(20deg); + } + + nav ul > *:nth-of-type(3) { + transform: rotate(-40deg) translate(-30ex) rotate(40deg); + } + + nav ul > *:nth-of-type(4) { + transform: rotate(-60deg) translate(-30ex) rotate(60deg); + } + + article { + padding-left: 90px; + /*max-width: 960px;*/ + max-width: 66%; + } +}