Fix challenge title formatting misc
This commit is contained in:
@@ -627,7 +627,7 @@
|
||||
},
|
||||
{
|
||||
"id": "bad87fee1348cd8acef08813",
|
||||
"title": "Call out Optional Actions with Button Info",
|
||||
"title": "Call out Optional Actions with btn-info",
|
||||
"description": [
|
||||
"Bootstrap comes with several pre-defined colors for buttons. The <code>btn-info</code> class is used to call attention to optional actions that the user can take.",
|
||||
"Create a new block-level Bootstrap button below your \"Like\" button with the text \"Info\", and add Bootstrap's <code>btn-info</code> and <code>btn-block</code> classes to it.",
|
||||
@@ -722,7 +722,7 @@
|
||||
},
|
||||
{
|
||||
"id": "bad87fee1348ce8acef08814",
|
||||
"title": "Warn your Users of a Dangerous Action",
|
||||
"title": "Warn Your Users of a Dangerous Action with btn-danger",
|
||||
"description": [
|
||||
"Bootstrap comes with several pre-defined colors for buttons. The <code>btn-danger</code> class is the button color you'll use to notify users that the button performs a destructive action, such as deleting a cat photo.",
|
||||
"Create a button with the text \"Delete\" and give it the class <code>btn-danger</code>.",
|
||||
@@ -1039,7 +1039,7 @@
|
||||
},
|
||||
{
|
||||
"id": "bad87fee1348bd9aedf08845",
|
||||
"title": "Use Spans for Inline Elements",
|
||||
"title": "Use a span to Target Inline Elements",
|
||||
"description": [
|
||||
"You can use spans to create inline elements. Remember when we used the <code>btn-block</code> class to make the button fill the entire row?",
|
||||
"This image illustrates the difference between <code>inline</code> elements and <code>block-level</code> elements:",
|
||||
@@ -1932,7 +1932,7 @@
|
||||
},
|
||||
{
|
||||
"id": "bad87fee1348bd9aec908746",
|
||||
"title": "House our page within a Bootstrap Container Fluid Div",
|
||||
"title": "House our page within a Bootstrap container-fluid div",
|
||||
"description": [
|
||||
"Now let's make sure all the content on your page is mobile-responsive.",
|
||||
"Let's nest your <code>h3</code> element within a <code>div</code> element with the class <code>container-fluid</code>."
|
||||
@@ -2007,7 +2007,7 @@
|
||||
},
|
||||
{
|
||||
"id": "bad87fee1348bd9aec908847",
|
||||
"title": "Split your Bootstrap Row",
|
||||
"title": "Split Your Bootstrap Row",
|
||||
"description": [
|
||||
"Now that we have a Bootstrap Row, let's split it into two columns to house our elements.",
|
||||
"Create two <code>div</code> elements within your row, both with the class <code>col-xs-6</code>."
|
||||
@@ -2090,7 +2090,7 @@
|
||||
},
|
||||
{
|
||||
"id": "bad87fee1348bd9aec908849",
|
||||
"title": "Add Elements within your Bootstrap Wells",
|
||||
"title": "Add Elements within Your Bootstrap Wells",
|
||||
"description": [
|
||||
"Now we're several <code>div</code> elements deep on each column of our row. This is as deep as we'll need to go. Now we can add our <code>button</code> elements.",
|
||||
"Nest three <code>button</code> elements within each of your <code>well</code> <code>div</code> elements."
|
||||
@@ -2243,7 +2243,7 @@
|
||||
},
|
||||
{
|
||||
"id": "bad87fee1348bd9aec908853",
|
||||
"title": "Add ID Attributes to Bootstrap Elements",
|
||||
"title": "Add id Attributes to Bootstrap Elements",
|
||||
"description": [
|
||||
"Recall that in addition to class attributes, you can give each of your elements an <code>id</code> attribute.",
|
||||
"Each id must be unique to a specific element and used only once per page.",
|
||||
@@ -2364,7 +2364,7 @@
|
||||
},
|
||||
{
|
||||
"id": "bad87fee1348bd9aec908855",
|
||||
"title": "Give Each Element a Unique ID",
|
||||
"title": "Give Each Element a Unique id",
|
||||
"description": [
|
||||
"We will also want to be able to use jQuery to target each button by its unique id.",
|
||||
"Give each of your buttons a unique id, starting with <code>target1</code> and ending with <code>target6</code>.",
|
||||
|
@@ -11,7 +11,7 @@
|
||||
"challenges": [
|
||||
{
|
||||
"id": "bad87fee1348bd9acdd08826",
|
||||
"title": "Learn how Script Tags and Document Ready Work",
|
||||
"title": "Learn How Script Tags and Document Ready Work",
|
||||
"description": [
|
||||
"Now we're ready to learn jQuery, the most popular JavaScript tool of all time. Don't worry about JavaScript itself - we will cover it soon.",
|
||||
"Before we can start using jQuery, we need to add some things to our HTML.",
|
||||
@@ -281,7 +281,7 @@
|
||||
},
|
||||
{
|
||||
"id": "bad87fee1348bd9aeda08826",
|
||||
"title": "Target Elements by ID Using jQuery",
|
||||
"title": "Target Elements by id Using jQuery",
|
||||
"required": [
|
||||
{
|
||||
"link": "https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.2.0/animate.css"
|
||||
@@ -337,7 +337,7 @@
|
||||
"challengeType": 0,
|
||||
"translations": {
|
||||
"de": {
|
||||
"title": "Elemente anhand der ID mit jQuery auswählen",
|
||||
"title": "Elemente anhand der id mit jQuery auswählen",
|
||||
"description": [
|
||||
"Du kannst Elemente auch anhand deren ID-Attributs auswählen.",
|
||||
"Wähle als erstes dein <code>Button</code> Element mit der ID <code>target3</code>, indem du den <code>$(\"#target3\")</code> Selektor nutzt.",
|
||||
@@ -348,7 +348,7 @@
|
||||
]
|
||||
},
|
||||
"es": {
|
||||
"title": "Elige elementos por ID usando jQuery",
|
||||
"title": "Elige elementos por id usando jQuery",
|
||||
"description": [
|
||||
"También puedes elegir un elemento por su atributo id.",
|
||||
"Primero selecciona tu elemento <code>button</code> con el id <code>target3</code> mediante el uso del selector <code>$(\"#target3\")</code>.",
|
||||
@@ -359,7 +359,7 @@
|
||||
]
|
||||
},
|
||||
"fr": {
|
||||
"title": "Cibler les éléments par ID avec jQuery",
|
||||
"title": "Cibler les éléments par id avec jQuery",
|
||||
"description": [
|
||||
"Vous pouvez également cibler les éléments à l'aide de leurs attributs id.",
|
||||
"Premièrement, cibler votre élément <code>button</code> avec l'id <code>target3</code> en utilisant le sélecteur <code>$(\"#target\")</code>.",
|
||||
@@ -373,7 +373,7 @@
|
||||
},
|
||||
{
|
||||
"id": "bad87fee1348bd9aeda08726",
|
||||
"title": "Delete your jQuery Functions",
|
||||
"title": "Delete Your jQuery Functions",
|
||||
"required": [
|
||||
{
|
||||
"link": "https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.2.0/animate.css"
|
||||
@@ -452,7 +452,7 @@
|
||||
},
|
||||
{
|
||||
"id": "bad87fee1348bd9aed908626",
|
||||
"title": "Target the same element with multiple jQuery Selectors",
|
||||
"title": "Target the Same Element with Multiple jQuery Selectors",
|
||||
"required": [
|
||||
{
|
||||
"link": "https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.2.0/animate.css"
|
||||
@@ -545,7 +545,7 @@
|
||||
},
|
||||
{
|
||||
"id": "bad87fee1348bd9aed918626",
|
||||
"title": "Remove Classes from an element with jQuery",
|
||||
"title": "Remove Classes from an Element with jQuery",
|
||||
"required": [
|
||||
{
|
||||
"link": "https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.2.0/animate.css"
|
||||
|
@@ -25,7 +25,7 @@
|
||||
},
|
||||
{
|
||||
"id": "587d7dbd367417b2b2512bb4",
|
||||
"title": "Storing Data with Sass Variables",
|
||||
"title": "Store Data with Sass Variables",
|
||||
"required": [
|
||||
{
|
||||
"link": "https://cdnjs.cloudflare.com/ajax/libs/sass.js/0.9.13/sass.min.js",
|
||||
@@ -82,7 +82,7 @@
|
||||
},
|
||||
{
|
||||
"id": "587d7dbd367417b2b2512bb5",
|
||||
"title": "Nesting CSS with Sass",
|
||||
"title": "Nest CSS with Sass",
|
||||
"required": [
|
||||
{
|
||||
"link": "https://cdnjs.cloudflare.com/ajax/libs/sass.js/0.9.13/sass.min.js",
|
||||
@@ -129,7 +129,7 @@
|
||||
},
|
||||
{
|
||||
"id": "587d7dbd367417b2b2512bb6",
|
||||
"title": "Creating Reusable CSS with Mixins",
|
||||
"title": "Create Reusable CSS with Mixins",
|
||||
"required": [
|
||||
{
|
||||
"link": "https://cdnjs.cloudflare.com/ajax/libs/sass.js/0.9.13/sass.min.js",
|
||||
@@ -182,7 +182,7 @@
|
||||
},
|
||||
{
|
||||
"id": "587d7dbe367417b2b2512bb8",
|
||||
"title": "Using @if and @else.",
|
||||
"title": "Use @if and @else to Add Logic To Your Styles",
|
||||
"required": [
|
||||
{
|
||||
"link": "https://cdnjs.cloudflare.com/ajax/libs/sass.js/0.9.13/sass.min.js",
|
||||
@@ -229,7 +229,7 @@
|
||||
},
|
||||
{
|
||||
"id": "587d7dbe367417b2b2512bb9",
|
||||
"title": "Continuing with @for",
|
||||
"title": "Use @for to Create a Sass Loop",
|
||||
"required": [
|
||||
{
|
||||
"link": "https://cdnjs.cloudflare.com/ajax/libs/sass.js/0.9.13/sass.min.js",
|
||||
@@ -278,7 +278,7 @@
|
||||
},
|
||||
{
|
||||
"id": "587d7dbf367417b2b2512bba",
|
||||
"title": "Expanding with @each",
|
||||
"title": "Use @each to Map Over Items in a List",
|
||||
"required": [
|
||||
{
|
||||
"link": "https://cdnjs.cloudflare.com/ajax/libs/sass.js/0.9.13/sass.min.js",
|
||||
@@ -328,7 +328,7 @@
|
||||
},
|
||||
{
|
||||
"id": "587d7dbf367417b2b2512bbb",
|
||||
"title": "Wrapping up with @while",
|
||||
"title": "Apply a Style Until a Condition is Met with @while",
|
||||
"required": [
|
||||
{
|
||||
"link": "https://cdnjs.cloudflare.com/ajax/libs/sass.js/0.9.13/sass.min.js",
|
||||
@@ -387,7 +387,7 @@
|
||||
},
|
||||
{
|
||||
"id": "587d7dbf367417b2b2512bbc",
|
||||
"title": "Partials",
|
||||
"title": "Split Your Styles into Smaller Chunks with Partials",
|
||||
"required": [
|
||||
{
|
||||
"link": "https://cdnjs.cloudflare.com/ajax/libs/sass.js/0.9.13/sass.min.js",
|
||||
@@ -422,7 +422,7 @@
|
||||
},
|
||||
{
|
||||
"id": "587d7fa5367417b2b2512bbd",
|
||||
"title": "Extend your CSS styles",
|
||||
"title": "Extend One Set of CSS Styles to Another Element",
|
||||
"required": [
|
||||
{
|
||||
"link": "https://cdnjs.cloudflare.com/ajax/libs/sass.js/0.9.13/sass.min.js",
|
||||
|
Reference in New Issue
Block a user