You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/concepts/colours.md
+17-34Lines changed: 17 additions & 34 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,46 +7,29 @@ The primary palette is applied across every page of the website and contains the
7
7
8
8
The following swatches contain a sample of each of the primary palette colours, along with recommendations for its usage and the acceptable contrast guidelines when coupled with text.
The secondary palette is applied to UI elements and it's not part of the base colors. The purpose of the secondary palette is to ensure the readability, usability, and accessibility of all UI elements and enhance the communication of actions, changes in state, or errors.
<h2>Build with the teams that never stop shipping.</h2>
14
15
<p>Some of the best development teams in the world have been iterating on their products for years with Ember. With scalable UI architecture baked-in from the start, you’ll be working with the same patterns these organizations use every step of the way.</p>
15
16
</div>
@@ -19,8 +20,8 @@ Example of a centered half column. A column class is used to limit its width.
19
20
### Left Aligned fixed width
20
21
21
22
```html
22
-
<divclass="row">
23
-
<divclass="col-one-half">
23
+
<divclass="layout-grid">
24
+
<divclass="col-3">
24
25
<h3>A Simple Component</h3>
25
26
<p>Ember Components are a superset of HTML – that means is a full-fledged Ember Component! To pass data into Components, use the @ symbol along with an argument name.</p>
26
27
</div>
@@ -31,50 +32,40 @@ Example of a centered half column. A column class is used to limit its width.
31
32
### Equally Distributed Columns
32
33
33
34
```html
34
-
<divclass="row">
35
-
<divclass="col">
36
-
<divclass="card text-center">
37
-
<divclass="card-content">
38
-
<h3>Podcasts</h3>
39
-
<p>Rock n' Roll with EmberJS.</p>
40
-
</div>
35
+
<divclass="layout-grid">
36
+
<divclass="col-2-large card text-center">
37
+
<divclass="card-content">
38
+
<h3>Podcasts</h3>
39
+
<p>Rock n' Roll with EmberJS.</p>
41
40
</div>
42
41
</div>
43
-
<divclass="col">
44
-
<divclass="card text-center">
45
-
<divclass="card-content">
46
-
<h3>Books</h3>
47
-
<p>Rock n' Roll with EmberJS.</p>
48
-
</div>
42
+
<divclass="col-2-large card text-center">
43
+
<divclass="card-content">
44
+
<h3>Books</h3>
45
+
<p>Rock n' Roll with EmberJS.</p>
49
46
</div>
50
47
</div>
51
-
<divclass="col">
52
-
<divclass="card text-center">
53
-
<divclass="card-content">
54
-
<h3>Videos</h3>
55
-
<p>Rock n' Roll with EmberJS.</p>
56
-
</div>
48
+
<divclass="col-2-large card text-center">
49
+
<divclass="card-content">
50
+
<h3>Videos</h3>
51
+
<p>Rock n' Roll with EmberJS.</p>
57
52
</div>
58
53
</div>
59
54
</div>
60
55
```
61
56
62
57
```html
63
-
<divclass="row">
64
-
<divclass="col">
65
-
<divclass="card">
66
-
<divclass="card-content">
67
-
<h3>Guides</h3>
68
-
<p>If you're familiar with JavaScript and web application development, our Guides will teach you everything you need to know to get started building with Ember.</p>
69
-
</div>
58
+
<divclass="layout-grid">
59
+
<divclass="col-3-large card">
60
+
<divclass="card-content">
61
+
<h3>Guides</h3>
62
+
<p>If you're familiar with JavaScript and web application development, our Guides will teach you everything you need to know to get started building with Ember.</p>
70
63
</div>
71
64
</div>
72
-
<divclass="col">
73
-
<divclass="card">
74
-
<divclass="card-content">
75
-
<h3>Read Our Blog</h3>
76
-
<p>Find out about the newest releases and latest work happening in the ecosystem by visiting the official Ember Blog.</p>
77
-
</div>
65
+
<divclass="col-3-large card">
66
+
<divclass="card-content">
67
+
<h3>Read Our Blog</h3>
68
+
<p>Find out about the newest releases and latest work happening in the ecosystem by visiting the official Ember Blog.</p>
78
69
</div>
79
70
</div>
80
71
</div>
@@ -83,53 +74,54 @@ Example of a centered half column. A column class is used to limit its width.
0 commit comments