diff options
Diffstat (limited to 'static')
-rw-r--r-- | static/style.css | 108 |
1 files changed, 108 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css new file mode 100644 index 0000000..952d3ca --- /dev/null +++ b/static/style.css @@ -0,0 +1,108 @@ +html { + background-color: black; + font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; +} + +body { + /* background: linear-gradient(red,orange,yellow,green,blue,indigo,violet); */ + margin-left: 0px; + margin-right: 0px; + margin-bottom: 0px; + position: relative; + background: black; +} + +#wrapper { + background-color: #f1f3f3; + max-width: 974px; + min-width: 850px; + margin: auto; + margin-top: -10px; +} + +header { + background-color: #8fbce7; +} + + +#headerflex { + display: flex; +} + +#headers { + flex-grow: 1; +} + +header nav { + flex-grow: 1; + display: inline; +} + +#links { + text-align: center; + font-size: x-small; +} + +header span nav ul { + background-color: black; +} + +header span nav ul li a { + color: white; +} + +nav ul { + margin: 0; + padding: 0; +} + +nav li { + display: inline-block; + list-style-type: none; +} + +nav a { + text-decoration: none; + display: block; + padding: 5px 6px 5px 6px; + color: black; +} + +#TheTitle { + text-decoration: none; + color: black; +} + +#TheTitle h1 { + padding-left: 6px; +} + +#articles { + text-align: left; + background-color: white; +} + +header img { + max-height: 110px; +} + +body div article { + padding-left: 6px; +} + +footer { + background-color: gray; + padding: 3px; +} + +@media (max-width: 1023px) { + body { + margin: 0; + padding: 0; + } + + #wrapper { + min-width: 100%; + margin-top: 0; + } +} |