36 lines
744 B
CSS
36 lines
744 B
CSS
/* load the default Redmine stylesheet */
|
|
@import url(../../../stylesheets/application.css);
|
|
|
|
|
|
|
|
#top-menu { font-size: 80%; height: 5em; padding-top: 1em; background-color: #00000094; }
|
|
|
|
/* add a logo in the header */
|
|
#header {
|
|
background: #000 url(../images/logo.png) no-repeat 2px;
|
|
background-color: #000;
|
|
padding-left: 156px;
|
|
min-height: 7em;
|
|
}
|
|
|
|
/* move the project menu to the right */
|
|
#main-menu {
|
|
left: auto;
|
|
right: 0px;
|
|
}
|
|
|
|
#content {
|
|
padding-left: 30px;
|
|
}
|
|
|
|
#projects-index {
|
|
column-count: auto;
|
|
column-width: 400px;
|
|
-webkit-column-count: auto;
|
|
-webkit-column-width: 400px;
|
|
-webkit-column-gap: 0.5rem;
|
|
-moz-column-count: auto;
|
|
-moz-column-width: auto;
|
|
-moz-column-gap: 0.5rem;
|
|
}
|