Skip to content

Commit

Permalink
main
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidBurKing committed Jun 21, 2024
1 parent 9589169 commit a3a6a3f
Show file tree
Hide file tree
Showing 5 changed files with 50 additions and 4 deletions.
20 changes: 20 additions & 0 deletions css/pages/index.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion css/pages/index.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added img/apresentacao.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 5 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/tailwind/output.css">
<link rel="stylesheet" href="css/global/header.css">
<link rel="stylesheet" href="css/pages/index.css">

<script src="functions/global/header.js"></script>

Expand Down Expand Up @@ -33,9 +34,10 @@
</header>

<main>
<article>
<section>

<article class="PrincipalContainer">
<section class="ApresentaçãoTC">
<img src="img/apresentacao.jpg" alt="" class="ApresentaçãoTC-image">
<h1 class="ApresentaçãoTC-title">Bem-vindo ao TerraTech!</h1>
</section>

<section>
Expand Down
24 changes: 24 additions & 0 deletions sass/pages/index.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
@import "../variables/colors/colors.scss";

@import "../variables/common/breakpoint.scss";

@import "../variables/fonts/fonts.scss";

main {
padding: 6em 0em 0em 0em;
font-family: 'Montserrat', sans-serif;
}

.PrincipalContainer {
.ApresentaçãoTC {
display: flex;
justify-content: center;
align-items: center;

.ApresentaçãoTC-title {
position: absolute;
font-weight: bolder;
font-size: 2em;
}
}
}

0 comments on commit a3a6a3f

Please sign in to comment.