Browse Source

Fixed themes so it's no longer centering elements which shouldn't be centered

master
Frans Bouma 4 years ago
parent
commit
67832c6df6
3 changed files with 45 additions and 18 deletions
  1. +15
    -6
      Themes/Default/Destination/css/theme.css
  2. +15
    -6
      Themes/LLBLGenPro/Destination/css/theme.css
  3. +15
    -6
      Themes/Light/Destination/css/theme.css

+ 15
- 6
Themes/Default/Destination/css/theme.css View File

@@ -511,11 +511,6 @@ td {
visibility: hidden; visibility: hidden;
} }


div.figure {
align-items: center;
text-align: center;
}

img.shadowed, div.figure img { img.shadowed, div.figure img {
margin: 0 auto; margin: 0 auto;
box-shadow: 0px 0px 10px rgba(10,10,10,0.3); box-shadow: 0px 0px 10px rgba(10,10,10,0.3);
@@ -1164,7 +1159,6 @@ div.figure p {
padding: 1.618em 3.236em; padding: 1.618em 3.236em;
height: 100%; height: 100%;
max-width: 800px; max-width: 800px;
margin: auto;
} }


.side-nav-search { .side-nav-search {
@@ -1263,6 +1257,11 @@ div.figure p {
} }


@media only screen and (max-width: 480px) { @media only screen and (max-width: 480px) {
img {
max-width: 100%;
height:auto;
}

.form input[type="text"] { .form input[type="text"] {
margin-bottom: 0.3em; margin-bottom: 0.3em;
display: block; display: block;
@@ -1275,6 +1274,11 @@ div.figure p {
} }


@media screen and (max-width: 480px) { @media screen and (max-width: 480px) {
img {
max-width: 100%;
height:auto;
}

.mobile-hide { .mobile-hide {
display: none; display: none;
} }
@@ -1289,6 +1293,11 @@ div.figure p {
} }


@media screen and (max-width: 768px) { @media screen and (max-width: 768px) {
img {
max-width: 100%;
height:auto;
}

.nav-top { .nav-top {
display: block; display: block;
} }


+ 15
- 6
Themes/LLBLGenPro/Destination/css/theme.css View File

@@ -511,11 +511,6 @@ td {
visibility: hidden; visibility: hidden;
} }


div.figure {
align-items: center;
text-align: center;
}

img.shadowed, div.figure img { img.shadowed, div.figure img {
margin: 0 auto; margin: 0 auto;
box-shadow: 0px 0px 8px rgba(10,10,10,0.2) box-shadow: 0px 0px 8px rgba(10,10,10,0.2)
@@ -1164,7 +1159,6 @@ div.figure p {
padding: 1.618em 3.236em; padding: 1.618em 3.236em;
height: 100%; height: 100%;
max-width: 800px; max-width: 800px;
margin: auto;
} }


.side-nav-search { .side-nav-search {
@@ -1263,6 +1257,11 @@ div.figure p {
} }


@media only screen and (max-width: 480px) { @media only screen and (max-width: 480px) {
img {
max-width: 100%;
height:auto;
}
.form input[type="text"] { .form input[type="text"] {
margin-bottom: 0.3em; margin-bottom: 0.3em;
display: block; display: block;
@@ -1275,6 +1274,11 @@ div.figure p {
} }


@media screen and (max-width: 480px) { @media screen and (max-width: 480px) {
img {
max-width: 100%;
height:auto;
}

.mobile-hide { .mobile-hide {
display: none; display: none;
} }
@@ -1289,6 +1293,11 @@ div.figure p {
} }


@media screen and (max-width: 768px) { @media screen and (max-width: 768px) {
img {
max-width: 100%;
height:auto;
}

.nav-top { .nav-top {
display: block; display: block;
} }


+ 15
- 6
Themes/Light/Destination/css/theme.css View File

@@ -511,11 +511,6 @@ td {
visibility: hidden; visibility: hidden;
} }


div.figure {
align-items: center;
text-align: center;
}

img.shadowed, div.figure img { img.shadowed, div.figure img {
margin: 0 auto; margin: 0 auto;
box-shadow: 0px 0px 10px rgba(10,10,10,0.3); box-shadow: 0px 0px 10px rgba(10,10,10,0.3);
@@ -1164,7 +1159,6 @@ div.figure p {
padding: 1.618em 3.236em; padding: 1.618em 3.236em;
height: 100%; height: 100%;
max-width: 800px; max-width: 800px;
margin: auto;
} }


.side-nav-search { .side-nav-search {
@@ -1263,6 +1257,11 @@ div.figure p {
} }


@media only screen and (max-width: 480px) { @media only screen and (max-width: 480px) {
img {
max-width: 100%;
height:auto;
}

.form input[type="text"] { .form input[type="text"] {
margin-bottom: 0.3em; margin-bottom: 0.3em;
display: block; display: block;
@@ -1275,6 +1274,11 @@ div.figure p {
} }


@media screen and (max-width: 480px) { @media screen and (max-width: 480px) {
img {
max-width: 100%;
height:auto;
}

.mobile-hide { .mobile-hide {
display: none; display: none;
} }
@@ -1289,6 +1293,11 @@ div.figure p {
} }


@media screen and (max-width: 768px) { @media screen and (max-width: 768px) {
img {
max-width: 100%;
height:auto;
}

.nav-top { .nav-top {
display: block; display: block;
} }


Loading…
Cancel
Save