Se você nunca programou ou sabe apenas o básico de programação, este
- lugar é pra você. Mas para que você aprenda a programar com React, é
+ lugar é pra você. Mas para que você aprenda a programar com React, é
necessário primeiro aprender HTML/CSS/Javascript.
diff --git a/styles/AprenderReactDoZero.module.scss b/styles/AprenderReactDoZero.module.scss
index b470f39..73c2261 100644
--- a/styles/AprenderReactDoZero.module.scss
+++ b/styles/AprenderReactDoZero.module.scss
@@ -1,3 +1,4 @@
+
.contentWrapper {
position: relative;
background-color: #5f4aaa;
@@ -13,10 +14,16 @@ x.banner {
background-size: 1200px auto;
background-position: left top;
background-repeat: no-repeat;
- height: 670px;
+ height: 500px;
background-color: #5f4aaa;
+
+ @media (max-width:600px) {
+ height: 300px;
+ }
}
+
+
.content {
position: relative;
z-index: 5;
@@ -28,7 +35,11 @@ x.banner {
background-size: 1200px auto;
background-position: left top;
background-repeat: no-repeat;
- min-height: 670px;
+ min-height: 500px;
+
+ @media (max-width:600px) {
+ height: 300px;
+ }
h1,
h2,
@@ -37,31 +48,104 @@ x.banner {
h5,
h6 {
color: #00dbff;
+ font-size: 22px;
}
+
+
}
.firstParagraph {
margin: 0;
max-width: 400px;
- font-size: 22px;
+ font-size: 20px;
+
}
.highlightText {
- margin: 50px 0 50px 15vw;
- font-size: 38px;
+ margin:0;
+ font-size: 20px;
color: #faf;
+ max-width: 800px;
}
.NaoExisteLinear {
+ margin: 0;
max-width: 800px;
+ h2{
+ font-size: 22px;
+ }
}
.footer {
- padding: 150px 0 100px 0;
+ padding: 50px 0px;
text-align: right;
+ a{
+ font-size: 15px;
+ }
}
.nextPageLink {
font-size: 28px;
color: #cbf;
}
+
+
+
+
+@media (max-width: 600px){
+
+ .contentWrapper{
+ flex-flow: column;
+ }
+ .content{
+
+ h1, h3, h4, h5, h6{
+ font-size: 18px;
+ }
+ h2{
+ font-size: 18px;
+ padding: 0px 0px 20px 18px;
+ margin-bottom: 10px;
+
+ }
+ p{
+ font-size: 16px;
+ text-align: justify-all;
+ padding: 0px 0px 0px 18px;
+ max-width: 500px;
+ }
+ margin: 0;
+ min-height: 400px;
+
+
+}
+.NaoExisteLinear{
+ h2{
+ padding: 30px 0px 30px 0px;
+ font-size: 18px;
+ margin: 0;
+ }
+ p{
+ font-size: 16px;
+ text-align: justify-all;
+ margin: 0;
+ max-width: 500px;
+ }
+}
+.highlightText{
+ font-size: 16px;
+ margin: 0;
+ padding: 20px;
+ max-width: 500px;
+}
+
+.nextPageLink{
+ font-size: 16px;
+}
+
+.footer{
+ padding: 50px 0px 50px 0px;
+};
+
+
+}