Skip to content

Commit 0af3570

Browse files
committed
adds angulario resources
1 parent e203264 commit 0af3570

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+8154
-0
lines changed
Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
/*
2+
* Typography
3+
*
4+
* Only the fonts listed below should be used throughout the site.
5+
*/
6+
7+
$brand-font: 'Roboto', "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
8+
$mono-font: Monaco, "Lucida Console", monospace;
9+
10+
11+
/*
12+
* Metrics
13+
*
14+
* Metrics based on material design 8pt unit
15+
*/
16+
17+
$unit: 8px;
18+
$phone-breakpoint: 480px;
19+
$tablet-breakpoint: 800px;
20+
21+
22+
/*
23+
* Layer Stacking
24+
*
25+
* The approved range that can be used for layering (z-indexes)
26+
*/
27+
28+
$layer-1: 1;
29+
$layer-2: 2;
30+
$layer-3: 3;
31+
$layer-4: 4;
32+
$layer-5: 5;
33+
$layer-6: 6;
34+
$layer-7: 7;
35+
$layer-8: 8;
36+
$layer-9: 9;
37+
$layer-10: 10;
38+
39+
40+
/*
41+
* Colors
42+
*
43+
* Colors are ordered from light to dark (top to bottom).
44+
* Do not use hex codes directly in other Sass files. The
45+
* following colors are the only approved colors for this site.
46+
*/
47+
48+
// GREEN COLORS
49+
$cactus: #8BC34A;
50+
51+
// YELLOW
52+
$sunshine: #FFF59D;
53+
54+
// ORANGE
55+
$sand: #FFF8E1;
56+
$citrus: #FF8F00;
57+
58+
// RED COLORS
59+
$peach: #ffebee;
60+
$squid: #EF3872;
61+
$cardinal: #E23237;
62+
$ruby: #B52E31;
63+
64+
// BLUE COLORS
65+
$light: #E3F2FD;
66+
$sky: #0085D3;
67+
$regal: #0273D4;
68+
$blueberry: #0262C2;
69+
$ocean: #0143A3;
70+
71+
//PURPLE
72+
$grape: #9575CD;
73+
74+
// DARK GRAY COLORS
75+
$coal: #000000;
76+
$steel: #253238;
77+
$silver: #36474F;
78+
$platinum: #445A64;
79+
$metal: #536E7A;
80+
$tin: #8FA4AE;
81+
82+
// LIGHT GRAY COLORS
83+
$cloud: #AFBEC5;
84+
$fog: #CFD8DC;
85+
$mist: #ECEFF1;
86+
$snow: #FFFFFF;
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
@media print {
2+
3+
/*
4+
* Print Styles
5+
*
6+
*/
7+
8+
// HIDE FOR PRINT
9+
.side-nav,
10+
.main-nav,
11+
.main-footer,
12+
.cta-bar {
13+
display: none !important;
14+
}
15+
16+
// ZERO OUT MARGIN & PADDING
17+
.l-offset-nav,
18+
.l-offset-side-nav {
19+
padding: 0 !important;
20+
margin: 0 !important;
21+
}
22+
23+
// BACKGROUND FOR PRINT
24+
.hero {
25+
background: none !important;
26+
}
27+
28+
//COLOR DARK
29+
.hero-title,
30+
.hero-subtitle {
31+
color: $steel;
32+
}
33+
}
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/*
2+
* States
3+
*
4+
* Utility classes for different element states
5+
*/
6+
7+
.is-hidden {
8+
display: none !important;
9+
}
10+
11+
.is-visible {
12+
display: block !important;
13+
}
14+
15+
.is-visually-hidden {
16+
height: 1px;
17+
width: 1px;
18+
overflow: hidden;
19+
opacity: 0.01;
20+
position: absolute;
21+
bottom: 0px;
22+
right: 0px;
23+
z-index: $layer-1;
24+
}
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
/*
2+
* Background Colors
3+
*
4+
* Background utility classes to add color to elements
5+
*/
6+
7+
.background-sky {
8+
background-color: $ocean;
9+
background: linear-gradient($ocean, $regal);
10+
color: $snow;
11+
}
12+
13+
.background-regal {
14+
background: $regal;
15+
color: $snow;
16+
}
17+
18+
.background-coal {
19+
background: $coal;
20+
color: $snow;
21+
}
22+
23+
.background-steel {
24+
background: $steel;
25+
color: $snow;
26+
}
27+
28+
.background-silver {
29+
background: $silver;
30+
color: $snow;
31+
}
32+
33+
34+
/*
35+
* Background Images
36+
*
37+
*/
38+
39+
.background-sf-paper {
40+
background: url('/resources/images/backgrounds/sf-paper.png') bottom center no-repeat;
41+
background-size: 100%;
42+
background-position: fixed;
43+
}
44+
45+
46+
47+
48+
/*
49+
* Text Colors
50+
*
51+
* Text color utility color classes
52+
*/
53+
54+
.text-snow {
55+
color: $snow;
56+
}

0 commit comments

Comments
 (0)