Commit d0cb9983 authored by Côme Bernigaud's avatar Côme Bernigaud Committed by Benoit Mortier
Browse files

Fixes #3239 Improving CSS style of login page

Showing with 18 additions and 16 deletions
+18 -16
...@@ -40,15 +40,27 @@ font-weight:bold; ...@@ -40,15 +40,27 @@ font-weight:bold;
font-size:12px; font-size:12px;
} }
html, body {
min-height:100%;
}
div#window_container { div#window_container {
text-align:center; text-align:center;
box-shadow:0 0 2px black;
width:100%;
bottom:0;
top:52px;
position:absolute;
} }
div#window_div { div#window_div {
min-width:50%; min-width:50%;
margin-top:100px; margin-top:100px;
border:1px solid #AAAAAA;background-color:white; border:1px solid #AAAAAA;
background-color:white;
display:inline-block; display:inline-block;
border-radius:10px;
box-shadow:0 0 3px black inset;
} }
div#window_titlebar { div#window_titlebar {
...@@ -56,6 +68,7 @@ text-align:center; ...@@ -56,6 +68,7 @@ text-align:center;
border-bottom:1px solid #AAAAAA; border-bottom:1px solid #AAAAAA;
padding:8px; padding:8px;
background-color:#DBE6C6; background-color:#DBE6C6;
border-radius:10px 10px 0 0;
} }
div#window_titlebar > p { div#window_titlebar > p {
...@@ -65,9 +78,6 @@ font-size:24px; ...@@ -65,9 +78,6 @@ font-size:24px;
font-weight:bold; font-weight:bold;
} }
div#window_content {
}
div#window_content > div { div#window_content > div {
padding:10px; padding:10px;
} }
...@@ -80,27 +90,18 @@ div#window_footer > div { ...@@ -80,27 +90,18 @@ div#window_footer > div {
display:inline-block; display:inline-block;
width:47%; width:47%;
padding:1%; padding:1%;
text-align:left;
}
html.rtl div#window_footer > div {
text-align:right;
} }
div#window_footer > div:nth-child(1) { div#window_footer > div:nth-child(1) {
text-align:left;
color:red; color:red;
font-weight:bold; font-weight:bold;
} }
html.rtl div#window_footer > div:nth-child(1) { html.ltr div#window_footer > div:nth-child(1) {
text-align:right; text-align:left;
} }
html.rtl div#window_footer > div:nth-child(1) {
div#window_footer > div:nth-child(2) {
text-align:right; text-align:right;
} }
html.rtl div#window_footer > div:nth-child(2) {
text-align:left;
}
/* On small screens */ /* On small screens */
@media (max-width: 640px) { @media (max-width: 640px) {
...@@ -112,6 +113,7 @@ text-align:left; ...@@ -112,6 +113,7 @@ text-align:left;
display:block; display:block;
width:auto; width:auto;
padding:5px; padding:5px;
text-align:center !important;
} }
div#window_footer.plugbottom > div:nth-child(2) > input[type=submit] { div#window_footer.plugbottom > div:nth-child(2) > input[type=submit] {
width:100% !important; width:100% !important;
......
  • bmortier @bmortier

    mentioned in issue #1083 (closed)

    By Côme Chilliet on 2017-09-02T15:12:01 (imported from GitLab)

    ·

    mentioned in issue #1083 (closed)

    By Côme Chilliet on 2017-09-02T15:12:01 (imported from GitLab)

    Toggle commit list
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment