Skip to content

Commit

Permalink
CSS: Fix footer position in desktop view
Browse files Browse the repository at this point in the history
  • Loading branch information
AngelFQC committed Nov 30, 2020
1 parent a0cc55b commit 66baa6f
Show file tree
Hide file tree
Showing 28 changed files with 245 additions and 46 deletions.
9 changes: 8 additions & 1 deletion app/Resources/public/css/themes/academica/default.css
Expand Up @@ -33,12 +33,19 @@
html {
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
position: relative;
}
body {
margin: 0;
margin: 0 0 60px;
font-family: 'Open Sans', sans-serif;
line-height: 1.72222;
}
body > main footer.footer {
bottom: 0;
left: 0;
position: absolute;
right: 0;
}
a{
color: #185B8E;
}
Expand Down
9 changes: 8 additions & 1 deletion app/Resources/public/css/themes/baby_orange/default.css
Expand Up @@ -32,12 +32,19 @@
html {
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
position: relative;
}
body {
margin: 0;
margin: 0 0 60px;
font-family: 'Open Sans', sans-serif;
line-height: 1.72222;
}
body > main footer.footer {
bottom: 0;
left: 0;
position: absolute;
right: 0;
}
a{
color: #666666;
}
Expand Down
10 changes: 8 additions & 2 deletions app/Resources/public/css/themes/beach/default.css
Expand Up @@ -29,16 +29,22 @@
src: local('Open Sans Bold'), local('OpenSans-Bold'), url(fonts/OpenSans-Bold.woff2) format('woff2'), url(fonts/OpenSans-Bold.woff) format('woff');
}


html {
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
position: relative;
}
body {
margin: 0;
margin: 0 0 60px;
font-family: 'Open Sans', sans-serif;
line-height: 1.72222;
}
body > main footer.footer {
bottom: 0;
left: 0;
position: absolute;
right: 0;
}

a {
color: #2E75A3;
Expand Down
9 changes: 8 additions & 1 deletion app/Resources/public/css/themes/blue_lagoon/default.css
Expand Up @@ -33,12 +33,19 @@
html {
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
position: relative;
}
body {
margin: 0;
margin: 0 0 60px;
font-family: 'Open Sans', sans-serif;
line-height: 1.72222;
}
body > main footer.footer {
bottom: 0;
left: 0;
position: absolute;
right: 0;
}
a{
color: #185B8E;
}
Expand Down
13 changes: 11 additions & 2 deletions app/Resources/public/css/themes/chamilo/default.css
Expand Up @@ -6,8 +6,17 @@
* Based on Bootstrap v3
*/

html {
position: relative;
}
body {
margin: 0;
margin: 0 0 60px;
}
body > main footer.footer {
bottom: 0;
left: 0;
position: absolute;
right: 0;
}

a {
Expand Down Expand Up @@ -116,4 +125,4 @@ a:focus {
}
.bgfooter a{
color: #ffffff;
}
}
12 changes: 12 additions & 0 deletions app/Resources/public/css/themes/chamilo_electric_blue/default.css
Expand Up @@ -30,6 +30,18 @@
font-weight: 700;
src: local('Open Sans Bold'), local('OpenSans-Bold'), url(../chamilo/fonts/OpenSans-Bold.woff2) format('woff2'), url(../chamilo/fonts/OpenSans-Bold.woff) format('woff');
}
html {
position: relative;
}
body {
margin: 0 0 60px;
}
body > main footer.footer {
bottom: 0;
left: 0;
position: absolute;
right: 0;
}
html {
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
Expand Down
9 changes: 8 additions & 1 deletion app/Resources/public/css/themes/chamilo_green/default.css
Expand Up @@ -32,12 +32,19 @@
html {
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
position: relative;
}
body {
margin: 0;
margin: 0 0 60px;
font-family: 'Open Sans', sans-serif;
line-height: 1.72222;
}
body > main footer.footer {
bottom: 0;
left: 0;
position: absolute;
right: 0;
}
a{
color: #004600;
}
Expand Down
9 changes: 8 additions & 1 deletion app/Resources/public/css/themes/chamilo_orange/default.css
Expand Up @@ -32,12 +32,19 @@
html {
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
position: relative;
}
body {
margin: 0;
margin: 0 0 60px;
font-family: 'Open Sans', sans-serif;
line-height: 1.72222;
}
body > main footer.footer {
bottom: 0;
left: 0;
position: absolute;
right: 0;
}

a{
color: #666666;
Expand Down
9 changes: 8 additions & 1 deletion app/Resources/public/css/themes/chamilo_red/default.css
Expand Up @@ -31,14 +31,21 @@
src: local('Open Sans Bold'), local('OpenSans-Bold'), url(../chamilo/fonts/OpenSans-Bold.woff2) format('woff2'), url(../chamilo/fonts/OpenSans-Bold.woff) format('woff');
}
html {
position: relative;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
body {
margin: 0;
margin: 0 0 60px;
font-family: 'Open Sans', sans-serif;
line-height: 1.72222;
}
body > main footer.footer {
bottom: 0;
left: 0;
position: absolute;
right: 0;
}
a{
color: #666666;
}
Expand Down
Expand Up @@ -32,12 +32,19 @@
html {
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
position: relative;
}
body {
margin: 0;
margin: 0 0 60px;
font-family: 'Open Sans', sans-serif;
line-height: 1.72222;
}
body > main footer.footer {
bottom: 0;
left: 0;
position: absolute;
right: 0;
}
a{
color: #666666;
}
Expand Down
17 changes: 12 additions & 5 deletions app/Resources/public/css/themes/cool_blue/default.css
Expand Up @@ -30,13 +30,20 @@
src: local('Open Sans Bold'), local('OpenSans-Bold'), url(../chamilo/fonts/OpenSans-Bold.woff2) format('woff2'), url(../chamilo/fonts/OpenSans-Bold.woff) format('woff');
}
html {
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
position: relative;
}
body {
margin: 0;
font-family: 'Open Sans', sans-serif;
line-height: 1.72222;
margin: 0 0 60px;
font-family: 'Open Sans', sans-serif;
line-height: 1.72222;
}
body > main footer.footer {
bottom: 0;
left: 0;
position: absolute;
right: 0;
}
a{
color: #666666;
Expand Down
9 changes: 8 additions & 1 deletion app/Resources/public/css/themes/corporate/default.css
Expand Up @@ -30,14 +30,21 @@
src: local('Open Sans Bold'), local('OpenSans-Bold'), url(../chamilo/fonts/OpenSans-Bold.woff2) format('woff2'), url(../chamilo/fonts/OpenSans-Bold.woff) format('woff');
}
html {
position: relative;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
body {
margin: 0;
margin: 0 0 60px;
font-family: 'Open Sans', sans-serif;
line-height: 1.72222;
}
body > main footer.footer {
bottom: 0;
left: 0;
position: absolute;
right: 0;
}
a{
color: #666666;
}
Expand Down
9 changes: 8 additions & 1 deletion app/Resources/public/css/themes/cosmic_campus/default.css
Expand Up @@ -31,14 +31,21 @@
src: local('Open Sans Bold'), local('OpenSans-Bold'), url(../chamilo/fonts/OpenSans-Bold.woff2) format('woff2'), url(../chamilo/fonts/OpenSans-Bold.woff) format('woff');
}
html {
position: relative;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
body {
margin: 0;
margin: 0 0 60px;
font-family: 'Open Sans', sans-serif;
line-height: 1.72222;
}
body > main footer.footer {
bottom: 0;
left: 0;
position: absolute;
right: 0;
}
a{
color: #185B8E;
}
Expand Down
Expand Up @@ -30,14 +30,21 @@
src: local('Open Sans Bold'), local('OpenSans-Bold'), url(../chamilo/fonts/OpenSans-Bold.woff2) format('woff2'), url(../chamilo/fonts/OpenSans-Bold.woff) format('woff');
}
html {
position: relative;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
body {
margin: 0;
margin: 0 0 60px;
font-family: 'Open Sans', sans-serif;
line-height: 1.72222;
}
body > main footer.footer {
bottom: 0;
left: 0;
position: absolute;
right: 0;
}
a{
color: #666666;
}
Expand Down
12 changes: 10 additions & 2 deletions app/Resources/public/css/themes/empire_green/default.css
Expand Up @@ -29,12 +29,20 @@
font-weight: 700;
src: local('Open Sans Bold'), local('OpenSans-Bold'), url(../chamilo/fonts/OpenSans-Bold.woff2) format('woff2'), url(../chamilo/fonts/OpenSans-Bold.woff) format('woff');
}

html {
position: relative;
}
body {
margin: 0;
margin: 0 0 60px;
font-family: 'Open Sans', sans-serif;
line-height: 1.72222;
}
body > main footer.footer {
bottom: 0;
left: 0;
position: absolute;
right: 0;
}
a{
color: #666666;
}
Expand Down
9 changes: 8 additions & 1 deletion app/Resources/public/css/themes/fruity_orange/default.css
Expand Up @@ -32,12 +32,19 @@
html {
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
position: relative;
}
body {
margin: 0;
margin: 0 0 60px;
font-family: 'Open Sans', sans-serif;
line-height: 1.72222;
}
body > main footer.footer {
bottom: 0;
left: 0;
position: absolute;
right: 0;
}
a{
color: #666666;
}
Expand Down
10 changes: 8 additions & 2 deletions app/Resources/public/css/themes/holi/default.css
Expand Up @@ -29,16 +29,22 @@
src: local('Open Sans Bold'), local('OpenSans-Bold'), url(fonts/OpenSans-Bold.woff2) format('woff2'), url(fonts/OpenSans-Bold.woff) format('woff');
}


html {
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
position: relative;
}
body {
margin: 0;
margin: 0 0 60px;
font-family: 'Open Sans', sans-serif;
line-height: 1.72222;
}
body > main footer.footer {
bottom: 0;
left: 0;
position: absolute;
right: 0;
}

a {
color: #3D91CA;
Expand Down

0 comments on commit 66baa6f

Please sign in to comment.