summaryrefslogtreecommitdiff
path: root/src/scss/ie
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/scss/ie/ie.scss17
-rw-r--r--src/scss/ie/ie4.scss4
-rw-r--r--src/scss/ie/ie6.scss41
3 files changed, 11 insertions, 51 deletions
diff --git a/src/scss/ie/ie.scss b/src/scss/ie/ie.scss
index 0498093..6305875 100644
--- a/src/scss/ie/ie.scss
+++ b/src/scss/ie/ie.scss
@@ -4,7 +4,7 @@
#header {
.ie-nav {
- margin-left: 90px;
+ margin-left: 70px;
}
}
@@ -23,12 +23,13 @@
h2.heading {
background: $blue;
}
- }
- #post,
- #writeup {
- .posted {
- margin-top: $inner-gap;
+ table {
+ width: 99%;
+ }
+
+ pre code {
+ width: 95%;
}
}
@@ -45,8 +46,4 @@
}
}
}
-
- table {
- behavior: url(boxsizing.htc);
- }
}
diff --git a/src/scss/ie/ie4.scss b/src/scss/ie/ie4.scss
index e2335a7..d054060 100644
--- a/src/scss/ie/ie4.scss
+++ b/src/scss/ie/ie4.scss
@@ -8,6 +8,10 @@
*/
#header {
+ .logo-text {
+ line-height: auto;
+ }
+
#nav li {
padding: 0px !important;
margin: 0px !important;
diff --git a/src/scss/ie/ie6.scss b/src/scss/ie/ie6.scss
deleted file mode 100644
index a443956..0000000
--- a/src/scss/ie/ie6.scss
+++ /dev/null
@@ -1,41 +0,0 @@
-/* IE 6 and 7 Only */
-
-@import "../variables";
-
-/**
- * IE5 and below seem to look fine without boxsizing
- * additions, its only the jump to IE5 where things seem
- * to start breaking and thus this is needed
- */
-
-* {
- behavior: url(boxsizing.htc);
-}
-
-/**
- * Fix homepage margin near footer, only caused
- * by the boxsizing i think
- */
-body {
- #main {
- .col {
-
- &div.left {
- margin-bottom: $inner-gap;
- }
-
- &div.right {
- margin-top: $inner-gap;
- }
-
- }
- }
-
- div#contact {
- margin-bottom: 0;
- }
-
- div#footer {
- margin-top: $inner-gap;
- }
-}