diff options
author | Roland Reichwein <mail@reichwein.it> | 2021-02-11 14:21:24 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2021-02-11 14:21:24 +0100 |
commit | f4b6b3b7bb2be6ec8aa6b694d9ff39a774f01da7 (patch) | |
tree | c357981c6a5dac668b084c1fd1af0e8b3e3d9137 /debian/example/reichwein.css | |
parent | a22c8c9c430505bdf951e3fd5ebb31485db729a0 (diff) |
Fix default config file to deliver default web page
Diffstat (limited to 'debian/example/reichwein.css')
-rw-r--r-- | debian/example/reichwein.css | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/debian/example/reichwein.css b/debian/example/reichwein.css new file mode 100644 index 0000000..f682af1 --- /dev/null +++ b/debian/example/reichwein.css @@ -0,0 +1,51 @@ +body { + font-family: "sans-serif"; + font-weight: 300; +} + +figcaption { + text-align: center; + font-size: 8px; + color: #808080; +} + +figure { + display: inline-block; +} + +.mobile { + width: 300px; + border-width: 80px 15px 80px 15px; + border-style: solid; + border-radius: 30px; + border-color: #000000; +} + +.logo { + display: block; + margin: 0 auto; +} + +.screenshot { + width: 400px; + border: 2px solid; + border-color: #8888AA; +} + +img.banner { + vertical-align: -5px; +} + +@media only screen and (min-width: 1px) and (max-width: 630px) { +} + +@media only screen and (min-width: 631px) and (max-width: 950px) { +} + +@media only screen and (min-width: 951px) { + div.page { + max-width: 950px; + width: 100%; + margin: 0 auto; + } +} |