French Vanilla
3.00
+diff --git a/curriculum/challenges/italian/14-responsive-web-design-22/learn-basic-css-by-building-a-cafe-menu/5f46e270702a8456a664f0df.md b/curriculum/challenges/italian/14-responsive-web-design-22/learn-basic-css-by-building-a-cafe-menu/5f46e270702a8456a664f0df.md new file mode 100644 index 0000000000..c214fac2b9 --- /dev/null +++ b/curriculum/challenges/italian/14-responsive-web-design-22/learn-basic-css-by-building-a-cafe-menu/5f46e270702a8456a664f0df.md @@ -0,0 +1,183 @@ +--- +id: 5f46e270702a8456a664f0df +title: Step 86 +challengeType: 0 +dashedName: step-86 +--- + +# --description-- + +Per rimuovere parte dello spazio verticale tra l'elemento `h1` e il testo `Est. 2020`, modifica il margine inferiore dell'elemento `h1` impostandolo a `15px`. + +# --hints-- + +Dovresti impostare la proprietà `margin-bottom` su `15px`. + +```js +const hasMarginBottom = new __helpers.CSSHelp(document).getCSSRules().some(x => x.style['margin-bottom'] === '15px'); +assert(hasMarginBottom); +``` + +Il tuo elemento `h1` dovrebbe avere un `margin-bottom` di `15px`. + +```js +const h1MarginBottom = new __helpers.CSSHelp(document).getStyle('h1')?.getPropertyValue('margin-bottom'); +assert(h1MarginBottom === '15px'); +``` + +# --seed-- + +## --seed-contents-- + +```html + + +
+ + ++ Our efforts to restructure our curriculum with a more project-based + focus +
++ Soon the freeCodeCamp curriculum will be 100% project-driven learning. Instead of a series of coding challenges, you'll learn through building projects - step by step. Before we get into the details, let me emphasize: we are not changing the certifications. All 6 certifications will still have the same 5 required projects. We are only changing the optional coding challenges. +
++ After years - years - of pondering these two problems and how to solve them, I slipped, hit my head on the sink, and when I came to I had a revelation! A vision! A picture in my head! A picture of this! This is what makes time travel possible: the flux capacitor! +
++ It wasn't as dramatic as Doc's revelation in Back to the Future. It + just occurred to me while I was going for a run. The revelation: the entire curriculum should be a series of projects. Instead of individual coding challenges, we'll just have projects, each with their own seamless series of tests. Each test gives you just enough information to figure out how to get it to pass. (And you can view hints if that isn't enough.) +
+++
++ The entire curriculum should be a series of projects +
+
+
+ No more walls of explanatory text. No more walls of tests. Just one + test at a time, as you build up a working project. Over the course of passing thousands of tests, you build up projects and your own understanding of coding fundamentals. There is no transition between lessons and projects, because the lessons themselves are baked into projects. And there's plenty of repetition to help you retain everything because - hey - building projects in real life has plenty of repetition. +
++ The main design challenge is taking what is currently paragraphs of explanation and instructions and packing them into a single test description text. Each project will involve dozens of tests like this. People will be coding the entire time, rather than switching back and forth from "reading mode" to "coding mode". +
++ Instead of a series of coding challenges, people will be in their code editor passing one test after another, quickly building up a project. People will get into a real flow state, similar to what they experience when they build the required projects at the end of each certification. They'll get that sense of forward progress right from the beginning. And freeCodeCamp will be a much smoother experience. +
+Of the Curriculum
++ We launched freeCodeCamp with a simple list of 15 resources, + including Harvard's CS50 and Stanford's Database Class. +
+We added interactive algorithm challenges.
++ We added our own HTML+CSS challenges (before we'd been relying + on General Assembly's Dash course for these). +
++ We expanded the curriculum to 3 certifications, including Front + End, Back End, and Data Visualization. They each had 10 required + projects, but only the Front End section had its own challenges. + For the other certs, we were still using external resources like + Node School. +
+We added the back end and data visualization challenges.
++ We launched 6 new certifications to replace our old ones. This + was the biggest curriculum improvement to date. +
+I CSS
+Please fill out this form with the required information
+ + + +``` + +```css +body { + width: 100%; + height: 100vh; + margin: 0; + background-color: #1b1b32; + color: #f5f6f7; +} + +label { + display: block; + margin: 0.5rem 0; +} + +``` diff --git a/curriculum/challenges/italian/14-responsive-web-design-22/learn-intermediate-css-by-building-a-picasso-painting/60b69a66b6ddb80858c515aa.md b/curriculum/challenges/italian/14-responsive-web-design-22/learn-intermediate-css-by-building-a-picasso-painting/60b69a66b6ddb80858c515aa.md new file mode 100644 index 0000000000..b82b8ea19a --- /dev/null +++ b/curriculum/challenges/italian/14-responsive-web-design-22/learn-intermediate-css-by-building-a-picasso-painting/60b69a66b6ddb80858c515aa.md @@ -0,0 +1,220 @@ +--- +id: 60b69a66b6ddb80858c515aa +title: Step 53 +challengeType: 0 +dashedName: step-53 +--- + +# --description-- + +Ora imposta la `position` ad `absolute`, il `top` a `20%` e il `left` a `20%`. + +# --hints-- + +Il tuo selettore `#blue-left` dovrebbe avere una proprietà `position` impostata a `absolute`. + +```js +assert(new __helpers.CSSHelp(document).getStyle('#blue-left')?.position === 'absolute'); +``` + +Il tuo selettore `#blue-left` dovrebbe avere una proprietà `top` impostata al `20%`. + +```js +assert(new __helpers.CSSHelp(document).getStyle('#blue-left')?.top === '20%'); +``` + +Il selettore `#blue-left` dovrebbe avere una proprietà `left` impostata a `20%`. + +```js +assert(new __helpers.CSSHelp(document).getStyle('#blue-left')?.left === '20%'); +``` + +# --seed-- + +## --seed-contents-- + +```html + + + + ++ | 2019 | +2020 | +2021 | +
---|---|---|---|
Cash This is the cash we currently have on hand. | +$25 | +$30 | +$28 | +
Checking Our primary transactional account. | +$54 | +$56 | +$53 | +
+ | 2019 | +2020 | +2021 | +
---|---|---|---|
Cash This is the cash we currently have on hand. | +$25 | +$30 | +$28 | +
Checking Our primary transactional account. | +$54 | +$56 | +$53 | +
Savings Funds set aside for emergencies. | +$500 | +$650 | +$728 | +
Total Assets | +$579 | +$736 | +$809 | +
+ | 2019 | +2020 | +2021 | +
---|---|---|---|
Loans The outstanding balance on our startup loan. | +$500 | +$250 | +$0 | +
Expenses Annual anticipated expenses, such as payroll. | +$200 | +$300 | +$400 | +
Credit The outstanding balance on our credit card. | +$50 | +$50 | +$75 | +
Total Liabilities | +$750 | +$600 | +$475 | +
+ | 2019 | +2020 | +2021 | +
---|---|---|---|
Total Net Worth | +$-171 | +$136 | +$334 | +
8 servings per container
+Serving size 2/3 cup (55g)
+style
タグの中で、以下の font-size
を設定してください。
style
タグの中で、以下の font-size
を設定してください。
h1
タグを 68px に