Skip to content

Commit f4a8d77

Browse files
ScreenFull page
1 parent cd073b5 commit f4a8d77

File tree

6 files changed

+89
-6
lines changed

6 files changed

+89
-6
lines changed

package-lock.json

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/_variables.scss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
**************************************************************/
99

1010
$color-primary: #85CE36 !default;
11-
$color-primary-light: lighten($color-primary, 10%) !default;
12-
$color-primary-lighter: lighten($color-primary-light, 6%) !default;
11+
$color-primary-light: lighten($color-primary, 10%) !default;
12+
$color-primary-lighter: lighten($color-primary-light, 6%) !default;
1313
$color-primary-dark: darken($color-primary, 10%) !default;
1414
$color-primary-darker: darken($color-primary-dark, 6%) !default;
1515

@@ -53,7 +53,7 @@ $header-height: 70px !default;
5353
$header-height-xs: 50px !default;
5454

5555
// Sidebar
56-
$sidebar-width: 230px !default;
56+
$sidebar-width: 240px !default;
5757

5858
// Footer
5959
$footer-height: 50px !default;
@@ -106,4 +106,4 @@ $chart-color-secondary: lighten($chart-color-primary, 10%) !default;
106106
****************************************************** */
107107

108108
// Dashboard
109-
$dashboard-stat-icon-color: #BDBDBD !default;
109+
$dashboard-stat-icon-color: #BDBDBD !default;

src/app/_common/sidebar/sidebar.hbs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838
<li {{#is pagename "in" "charts-flot,charts-morris"}}class="active open"{{/is}} >
3939
<a href="">
40-
<i class="fa fa-bar-chart"></i> Charts
40+
<i class="fa fa-area-chart"></i> Charts
4141
<i class="fa arrow"></i>
4242
</a>
4343

@@ -264,6 +264,12 @@
264264
</ul>
265265
</li>
266266

267+
<li {{#is pagename "===" "docs"}}class="active"{{/is}} >
268+
<a href="screenful.html">
269+
<i class="fa fa-bar-chart"></i> Team Metrics <span class="label label-screenful">by Screenful</span>
270+
</a>
271+
</li>
272+
267273
<li {{#is pagename "===" "docs"}}class="active"{{/is}} >
268274
<a href="https://github.com/modularcode/modular-admin-html">
269275
<i class="fa fa-github-alt"></i> Theme Docs

src/app/_common/sidebar/sidebar.scss

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,21 @@
3838
}
3939
}
4040

41+
.label {
42+
font-size: .75em;
43+
display: inline-block;
44+
border-radius: .2em;
45+
padding: 2px 5px;
46+
background-color: #ccc;
47+
color: #000;
48+
margin: 0 3px;
49+
}
50+
51+
.label-screenful {
52+
color: #fff;
53+
background-color: #6769d4;
54+
}
55+
4156
.sidebar-menu {
4257

4358
font-size: 14px;
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
layout: app/app-layout
3+
pagename: screenful
4+
---
5+
<div class="title-block">
6+
7+
8+
<h1 class="title">
9+
Team Metrics
10+
</h1
11+
<p class="title-description">Supercharge your teamwork with <a href="https://screenful.com" target="_blank">Screenful</a>! </p>
12+
13+
</div>
14+
15+
16+
<section class="section">
17+
18+
{{!-- <div class="card"> --}}
19+
{{!-- <div class="card-block"> --}}
20+
21+
<h3 class="subtitle">This project is proudly supported by</h3>
22+
23+
<a href="https://screenful.com" target="_blank">
24+
<div class="screenful-logo"></div>
25+
</a>
26+
27+
<p class="description">
28+
Screenful is the easiest way to <strong>visualise and share your project progress</strong> using data from your <strong>existing tools</strong>.<br>
29+
Get a quick overview of your team's status on your smartphone or tablet. <a href="https://screenful.com" target="_blank">Learn more</a>
30+
</p>
31+
32+
33+
{{!-- </div> --}}
34+
{{!-- </div> --}}
35+
</section>
36+
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
.screenful-page {
2+
3+
.section {
4+
text-align: center;
5+
}
6+
7+
.card-block {
8+
padding: 40px 100px;
9+
text-align: center;
10+
}
11+
12+
.subtitle {
13+
margin-bottom: 30px;
14+
}
15+
16+
.screenful-logo {
17+
width: 300px;
18+
height: 160px;
19+
border-radius: 10px;
20+
background-size: cover;
21+
background-position: center;
22+
background-image: url('https://static1.squarespace.com/static/5303cdc2e4b01fb736d82734/t/594145b02e69cf344247228a/1497449932063/?format=500w');
23+
background-repeat: no-repeat;
24+
display: inline-block;
25+
margin-bottom: 20px;
26+
}
27+
}

0 commit comments

Comments
 (0)