Main Titles and module summary
parent
3d343a06da
commit
0d31cec90e
|
@ -5,7 +5,7 @@ block head
|
||||||
|
|
||||||
block content
|
block content
|
||||||
section.main.backlog
|
section.main.backlog
|
||||||
h1 Decathlon Backlog
|
include views/components/mainTitle
|
||||||
include views/components/summary
|
include views/components/summary
|
||||||
include views/modules/burndown
|
include views/modules/burndown
|
||||||
div.sub-menu
|
div.sub-menu
|
||||||
|
|
|
@ -0,0 +1,60 @@
|
||||||
|
.summary {
|
||||||
|
background: $blackish;
|
||||||
|
color: $white;
|
||||||
|
padding: 1em;
|
||||||
|
@include clearfix;
|
||||||
|
ul {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
float: left;
|
||||||
|
margin-top: 4px;
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
li {
|
||||||
|
float: left;
|
||||||
|
display: block;
|
||||||
|
margin-right: 4%;
|
||||||
|
}
|
||||||
|
.data {
|
||||||
|
float: left;
|
||||||
|
margin-top: 4px;
|
||||||
|
margin-right: 1.5em;
|
||||||
|
.number {
|
||||||
|
color: $freshTaiga;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.summary-progress-bar {
|
||||||
|
height: 30px;
|
||||||
|
margin-bottom: 0;
|
||||||
|
margin-right: 10px;
|
||||||
|
background: $whitish;
|
||||||
|
width: 20%;
|
||||||
|
position: relative;
|
||||||
|
float: left;
|
||||||
|
.current-progress {
|
||||||
|
position: absolute;
|
||||||
|
top: 3px;
|
||||||
|
left: 2px;
|
||||||
|
width: calc(30% - 4px);
|
||||||
|
background: $freshTaiga;
|
||||||
|
height: 24px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.number {
|
||||||
|
font-family: 'DroidSans-Bold';
|
||||||
|
@extend .xlarge;
|
||||||
|
float: left;
|
||||||
|
margin-right: .2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.description {
|
||||||
|
font-family: 'DroidSans';
|
||||||
|
@extend .small;
|
||||||
|
float: left;
|
||||||
|
line-height: 1em;
|
||||||
|
position: relative;
|
||||||
|
top: -2px;
|
||||||
|
}
|
|
@ -21,11 +21,22 @@ h1, h2, h3, h4, h5, h6 {
|
||||||
}
|
}
|
||||||
|
|
||||||
/*__Font Sizes__*/
|
/*__Font Sizes__*/
|
||||||
.small {font-size: .7em;}
|
.small {font-size: .8rem;}
|
||||||
.medium {font-size: 1em;}
|
.medium {font-size: 1rem;}
|
||||||
.large {font-size: 1.2em;}
|
.large {font-size: 1.2rem;}
|
||||||
.xlarge {font-size: 2em;}
|
.xlarge {font-size: 2rem;}
|
||||||
.xxlarge {font-size: 3em;}
|
.xxlarge {font-size: 3rem;}
|
||||||
|
.xxxlarge {font-size: 3rem;}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
@extend .xxlarge;
|
||||||
|
font-family: 'ostrichSans';
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
.green {
|
||||||
|
color: $greenTaiga;
|
||||||
|
margin-left: .3rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
p { margin: 0 0 20px 0;
|
p { margin: 0 0 20px 0;
|
||||||
img {
|
img {
|
||||||
|
|
|
@ -7,7 +7,7 @@ body {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background: #fff; /* fallback */
|
background: #fff; /* fallback */
|
||||||
font: 14px/21px 'DroidSans', Arial, sans-serif;
|
font: 16px/21px 'DroidSans', Arial, sans-serif;
|
||||||
color: #444;
|
color: #444;
|
||||||
-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
|
-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
|
@ -29,6 +29,7 @@ body {
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
flex-basis: 200px;
|
flex-basis: 200px;
|
||||||
|
padding: 2em 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.main {
|
.main {
|
||||||
|
@ -36,6 +37,7 @@ body {
|
||||||
flex-grow: 8;
|
flex-grow: 8;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
flex-basis: 200px;
|
flex-basis: 200px;
|
||||||
|
padding: 2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon {
|
.icon {
|
||||||
|
|
|
@ -19,6 +19,7 @@ $prefix-for-spec: true;
|
||||||
//Components
|
//Components
|
||||||
@import 'components/buttons';
|
@import 'components/buttons';
|
||||||
@import 'components/avatar';
|
@import 'components/avatar';
|
||||||
|
@import 'components/summary';
|
||||||
|
|
||||||
//Layout
|
//Layout
|
||||||
@import 'layout/base';
|
@import 'layout/base';
|
||||||
|
|
|
@ -2,14 +2,14 @@
|
||||||
width: 90px;
|
width: 90px;
|
||||||
background-image: url("/images/menu.png");
|
background-image: url("/images/menu.png");
|
||||||
background-attachment: fixed;
|
background-attachment: fixed;
|
||||||
background-position: center bottom;
|
background-position: left bottom;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
padding: 2em .3em;
|
padding: 2em .3em;
|
||||||
font-family: 'ostrichSans';
|
font-family: 'ostrichSans';
|
||||||
}
|
}
|
||||||
|
|
||||||
.logo {
|
.logo {
|
||||||
margin-bottom: 2em;
|
margin-bottom: 1em;
|
||||||
img {
|
img {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
@ -37,7 +37,7 @@
|
||||||
}
|
}
|
||||||
.icon{
|
.icon{
|
||||||
@extend .xlarge;
|
@extend .xlarge;
|
||||||
line-height: 1.1em;
|
line-height: 2.2rem;
|
||||||
}
|
}
|
||||||
.item {
|
.item {
|
||||||
@extend .large;
|
@extend .large;
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
h1 ProjectName
|
||||||
|
span.green Title
|
|
@ -1,17 +1,19 @@
|
||||||
div.summary
|
div.summary
|
||||||
div.progress-bar
|
div.summary-progress-bar
|
||||||
div.current-progress
|
div.current-progress
|
||||||
|
div.data
|
||||||
span.number 30%
|
span.number 30%
|
||||||
|
span.description completed
|
||||||
ul
|
ul
|
||||||
li
|
li
|
||||||
span.number 12
|
span.number 12
|
||||||
span.description project points
|
span.description project<br />points
|
||||||
li
|
li
|
||||||
span.number 23
|
span.number 23
|
||||||
span.description defined points
|
span.description defined<br />points
|
||||||
li
|
li
|
||||||
span.number 12
|
span.number 12
|
||||||
span.description assigned points
|
span.description assigned<br />points
|
||||||
li
|
li
|
||||||
span.number 23
|
span.number 23
|
||||||
span.description closed points
|
span.description closed<br />points
|
||||||
|
|
Loading…
Reference in New Issue