Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/icewind1991/files_markdown.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorshrimpza <git@shrimpworks.za.net>2014-08-15 11:02:01 +0400
committershrimpza <git@shrimpworks.za.net>2014-08-15 11:02:01 +0400
commita5eef776197cbc3baba7a7c88b10854a55eefd1a (patch)
treed59423efcc294565e24adb68ef4f649a28b159bc /css
parentdf517475b746f4a47c3d961f3a7ce447b1e9fb69 (diff)
Fix top of preview falling unber oC navigation bar (only tested in oC7).
Using a fixed px value rather than em, since the oC7 title and navgation bars are as big as they are, and not variable.
Diffstat (limited to 'css')
-rw-r--r--css/preview.css2
1 files changed, 1 insertions, 1 deletions
diff --git a/css/preview.css b/css/preview.css
index 7f2023b..363d380 100644
--- a/css/preview.css
+++ b/css/preview.css
@@ -2,7 +2,7 @@
right: 0;
position: fixed;
top: 0;
- padding-top: 6.3em;
+ padding-top: 88px;
height: 100%;
width: 50%;
box-sizing: border-box;