- +
diff --git a/exercicio1/style.css b/exercicio1/style.css index e69de29..da7b078 100644 --- a/exercicio1/style.css +++ b/exercicio1/style.css @@ -0,0 +1,16 @@ +*{ + padding: 0; + box-sizing: border-box; +} + +body{ + color:orange; +} + +.texto-com-background{ + background-color: #FFFE57; +} + +#texto-com-outra-cor{ + color: green; +} \ No newline at end of file diff --git a/exercicio2/style.css b/exercicio2/style.css index e69de29..cec582d 100644 --- a/exercicio2/style.css +++ b/exercicio2/style.css @@ -0,0 +1,29 @@ +*{ + margin: 0; + padding:0; + box-sizing: border-box; +} + +header{ + position: fixed; + background-color: white; + border-bottom: 0.063rem black solid; + width:100vw; + padding: 0.625rem 1.75rem; + font-family: helvetica; + top:0%; + left: 0%; +} + +main{ + padding: 3.125rem 1.75rem; + font-family: helvetica; + text-align: center; +} + +footer{ + margin-top: 900px; + border-top: 0.063rem black solid; + padding: 0.625rem 1.75rem; + font-family: helvetica; +} \ No newline at end of file diff --git a/exercicio3/index.html b/exercicio3/index.html index 309e11a..8775675 100644 --- a/exercicio3/index.html +++ b/exercicio3/index.html @@ -11,7 +11,7 @@
- + diff --git a/exercicio3/style.css b/exercicio3/style.css index e69de29..2d7544d 100644 --- a/exercicio3/style.css +++ b/exercicio3/style.css @@ -0,0 +1,21 @@ +*{ + margin: 0; + padding: 0; + box-sizing: border-box; +} + +.btn:hover{ + background-color:red; + color: white; +} + +.btn:active{ + background-color:pink; + color: red; +} + +.btn{ + background-color: white; + display: block; + margin: auto; +} \ No newline at end of file diff --git a/fixacao/index.html b/fixacao/index.html index 494357f..419d7cb 100644 --- a/fixacao/index.html +++ b/fixacao/index.html @@ -15,16 +15,14 @@