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: README.md
+3-4Lines changed: 3 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -108,7 +108,7 @@ So for example, if you have a heading element that you want to update to a headi
108
108
109
109
### Custom containers
110
110
111
-
One of the most important classes provided by _custom-styles.css_ is the _.custom-container_ class. With this class you can create containers that are padded, bordered and margined. All the examples in the "Examples" section are contained in custom containers. In order to make a normal div into a custom container you just have to add the class _.custom-container_ to such an element. As an example we have a restaurant reservation system that is wrapped in a div...
111
+
One of the most important classes provided by _custom-styles.css_ is the _.main-container_ class. With this class you can create containers that are padded, bordered and margined. All the examples in the "Examples" section are contained in custom containers. In order to make a normal div into a custom container you just have to add the class _.main-container_ to such an element. As an example we have a restaurant reservation system that is wrapped in a div...
112
112
113
113
<div>
114
114
<h1>Restaurant Reservation System</h1>
@@ -119,9 +119,9 @@ One of the most important classes provided by _custom-styles.css_ is the _.custo
119
119
120
120

121
121
122
-
...add the _.custom-container_ and _.bg-blue_ classes to such div in order to change it to a custom container with a blue background...
122
+
...add the _.main-container_ and _.bg-blue_ classes to such div in order to change it to a custom container with a blue background...
123
123
124
-
<div class="custom-container bg-blue">
124
+
<div class="main-container bg-blue">
125
125
<h1>Restaurant Reservation System</h1>
126
126
...
127
127
</div>
@@ -134,7 +134,6 @@ One of the most important classes provided by _custom-styles.css_ is the _.custo
134
134
135
135
In order to see how to apply any of the different styling examples simply load the index.html that comes with the library, and check the source code to see how each element was implemented.
0 commit comments