Se tunea Redmine para tener una página de inicio solo para usuarios anónimos
This commit is contained in:
parent
d2fc48bda8
commit
3c31ac4771
26 changed files with 3910 additions and 15 deletions
|
@ -36,7 +36,11 @@
|
|||
/**********************************************************/
|
||||
|
||||
html {
|
||||
background: transparent url(../images/bg_wa.png) repeat-x 0 bottom;
|
||||
height: 100%;
|
||||
}
|
||||
body {
|
||||
min-height: 100%;
|
||||
background-color: #182330;
|
||||
}
|
||||
|
||||
#wrapper-top-menu,
|
||||
|
@ -259,7 +263,7 @@ div.wiki .external {
|
|||
|
||||
.icon-rss:before { content: '\e800'; }
|
||||
.icon-mail:before { content: '\e801'; }
|
||||
.icon-blog:before { content: '\e802'; }
|
||||
.icon-blog:before { content: '\e808'; }
|
||||
.icon-github:before { content: '\f09b'; }
|
||||
.icon-gitlab:before { content: '\f296'; }
|
||||
.icon-twitter:before { content: '\f309'; }
|
||||
|
@ -320,6 +324,12 @@ div.wiki .external {
|
|||
padding-top: 1px;
|
||||
font-size: 12px;
|
||||
}
|
||||
@media screen and (max-width: 899px) {
|
||||
#quick-search .drdn-trigger {
|
||||
font-size: 1.85em !important;
|
||||
line-height: 1.85em !important;
|
||||
}
|
||||
}
|
||||
|
||||
/**********************************************************/
|
||||
/* 4. TOP-MENU */
|
||||
|
@ -565,10 +575,28 @@ ul.social-menu .social-link-mail:hover a {
|
|||
/* 8. FOOTER */
|
||||
/**********************************************************/
|
||||
|
||||
#scrollup {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
opacity: 0.2;
|
||||
position: fixed;
|
||||
bottom: 50px;
|
||||
right: 60px;
|
||||
display: none;
|
||||
text-indent: -9999px;
|
||||
background: url(../images/icon2top.png) no-repeat;
|
||||
z-index: 999;
|
||||
}
|
||||
@media screen and (max-width: 899px) {
|
||||
#scrollup {
|
||||
bottom: 20px;
|
||||
right: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
#footer {
|
||||
height: 36px;
|
||||
padding: 0;
|
||||
border: 1px solid #182230;
|
||||
border: 1px solid #182330;
|
||||
background-color: #182330;
|
||||
text-align: left;
|
||||
font-size: 11px;
|
||||
|
@ -577,7 +605,7 @@ ul.social-menu .social-link-mail:hover a {
|
|||
}
|
||||
#footer div.bgl {
|
||||
display: inline-block;
|
||||
margin: 14px 0 0 30px;
|
||||
margin: 14px 0 4.4em 30px;
|
||||
}
|
||||
#footer a, #footer a:visited {
|
||||
color: #ced4d9;
|
||||
|
@ -587,6 +615,23 @@ ul.social-menu .social-link-mail:hover a {
|
|||
text-decoration: none;
|
||||
}
|
||||
|
||||
#legal {
|
||||
position: absolute;
|
||||
margin-top: 2.8em;
|
||||
line-height: 1.6em;
|
||||
}
|
||||
#legal a {
|
||||
color: #ffbf00;
|
||||
font-weight: 700;
|
||||
font-size: 10pt;
|
||||
}
|
||||
#legal a:hover,
|
||||
#legal a:visited {
|
||||
color: #ffbf00;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
|
||||
/**********************************************************/
|
||||
/* 9. WIKI */
|
||||
/**********************************************************/
|
||||
|
@ -643,17 +688,63 @@ div.flash.warning, .conflict {
|
|||
/* 11. LOGIN FORM */
|
||||
/**********************************************************/
|
||||
|
||||
body.action-login #main.nosidebar #content {
|
||||
background: #ebeae9 url(../images/bg_login.jpg) repeat-x top center;
|
||||
body.action-login #wrapper-main {
|
||||
max-width: 100%;
|
||||
}
|
||||
body.action-login #wrapper3 {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
body.action-login #content {
|
||||
background-image: -moz-linear-gradient(top, rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("../images/bg_banner.jpg");
|
||||
background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("../images/bg_banner.jpg");
|
||||
background-image: -ms-linear-gradient(top, rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("../images/bg_banner.jpg");
|
||||
background-image: linear-gradient(top, rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("../images/bg_banner.jpg");
|
||||
background-attachment: fixed;
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
-webkit-background-size: cover;
|
||||
-moz-background-size: cover;
|
||||
-o-background-size: cover;
|
||||
background-size: cover;
|
||||
padding: 6em 2.35em;
|
||||
}
|
||||
#login-form {
|
||||
border: 0;
|
||||
border-radius: 0;
|
||||
background-color: rgba(252, 255, 255, 0.45);
|
||||
margin-top: 3em;
|
||||
margin: 0 auto;
|
||||
padding: 10px 40px 30px;
|
||||
width: 440px;
|
||||
}
|
||||
#login-form h2 {
|
||||
font-size: 1.8em;
|
||||
line-height: 1.75em;
|
||||
color: #fff;
|
||||
margin: 0 0 1em 0;
|
||||
letter-spacing: 0.215em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
#login-form label {
|
||||
letter-spacing: 0;
|
||||
font-size: 15pt;
|
||||
color: #fff;
|
||||
line-height: 1.65em;
|
||||
}
|
||||
#login-form a.lost_password {
|
||||
font-size: .85em;
|
||||
-moz-transition: color 0.2s ease, border-bottom-color 0.2s ease;
|
||||
-webkit-transition: color 0.2s ease, border-bottom-color 0.2s ease;
|
||||
-ms-transition: color 0.2s ease, border-bottom-color 0.2s ease;
|
||||
transition: color 0.2s ease, border-bottom-color 0.2s ease;
|
||||
border-bottom: dotted 1px;
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
#login-form a.lost_password:hover {
|
||||
border-bottom-color: transparent;
|
||||
}
|
||||
#login-form table {
|
||||
border: 0px;
|
||||
border: 0;
|
||||
padding: 30px;
|
||||
}
|
||||
#login-form input[type=text],
|
||||
|
@ -661,9 +752,67 @@ body.action-login #main.nosidebar #content {
|
|||
height: 39px;
|
||||
padding: 6px 12px;
|
||||
font-size: 18px;
|
||||
color: #3d454c;
|
||||
}
|
||||
#login-form input#login-submit {
|
||||
padding: 0px;
|
||||
padding: 0;
|
||||
margin-top: 1.65em;
|
||||
height: 2.65em;
|
||||
font-size: 20px;
|
||||
font-weight: 400;
|
||||
letter-spacing: 1.5px;
|
||||
text-transform: uppercase;
|
||||
color: #fff;
|
||||
background-color: rgba(144, 144, 144, 0.25);
|
||||
box-shadow: rgb(255, 255, 255) 0px 0px 0px 2px inset;
|
||||
border-radius: 3px;
|
||||
}
|
||||
@media screen and (max-width: 899px) {
|
||||
body.action-login #project-jump {
|
||||
display: none;
|
||||
}
|
||||
body.action-login #wrapper-header {
|
||||
background: url(../images/logo.png) no-repeat 12px 0;
|
||||
}
|
||||
body.action-login #header {
|
||||
height: 88px;
|
||||
}
|
||||
body.action-login #header h1 {
|
||||
display: block !important;
|
||||
padding-left: 15px;
|
||||
}
|
||||
body.action-login #header a.mobile-toggle-button {
|
||||
margin-top: 10px;
|
||||
border-left: 0;
|
||||
}
|
||||
|
||||
#login-form {
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
#login-form h2 {
|
||||
font-size: 1.65em;
|
||||
}
|
||||
#login-form a.lost_password {
|
||||
font-size: .78em;
|
||||
}
|
||||
}
|
||||
@media screen and (max-width: 767px) {
|
||||
#login-form {
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
}
|
||||
#login-form h2 {
|
||||
font-size: 1.225em;
|
||||
}
|
||||
#login-form a.lost_password {
|
||||
font-size: .68em;
|
||||
}
|
||||
}
|
||||
@media screen and (max-width: 599px) {
|
||||
#login-form {
|
||||
margin-top: 0 !important;
|
||||
}
|
||||
}
|
||||
|
||||
/**********************************************************/
|
||||
|
@ -714,6 +863,7 @@ div.flash + div.contextual {
|
|||
margin-top: 0;
|
||||
padding-right: 8px;
|
||||
}
|
||||
div#content > div.contextual label[for="closed"],
|
||||
div#content > div.contextual:first-child a,
|
||||
div.flash + div.contextual a {
|
||||
display: inline-block;
|
||||
|
@ -1287,7 +1437,7 @@ div.details { padding: 20px !important; }
|
|||
}
|
||||
@media all and (max-width: 899px) {
|
||||
body #header {
|
||||
background-color: #3d454c;
|
||||
background-color: #003346;
|
||||
}
|
||||
#wrapper-header {
|
||||
background-image: none;
|
||||
|
|
2828
public/themes/circlepro/stylesheets/frontpage.css
Normal file
2828
public/themes/circlepro/stylesheets/frontpage.css
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue