Skip to content

Commit

Permalink
15/09
Browse files Browse the repository at this point in the history
  • Loading branch information
sibellyvih authored Sep 15, 2024
1 parent 002c45d commit ea32168
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 14 deletions.
2 changes: 1 addition & 1 deletion criadora.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<body>
<header>
<div class="caixa">
<h1>Sobre mim</h1>
<h1>Quem criou este projeto?</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
Expand Down
27 changes: 14 additions & 13 deletions game.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;700&display=swap');

:root {
--cor-de-fundo-titulo-principal: #F4D03F;
--background-image: linear-gradient(132deg, #F4D03F 0%, #16A085 100%);
Expand All @@ -9,10 +11,12 @@
--texto-fundo: rgb(0, 28, 0);
}

body {
html, body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
height: 100%;
width: 100%;
color: var(--branco);
background: var(--preto);
}
Expand All @@ -33,6 +37,7 @@ header {
font-size: 25px;
color: rgb(0, 69, 0);
padding-left: 85px;
padding-bottom: 29px;
}

.caixa ul {
Expand All @@ -41,7 +46,7 @@ header {

nav {
position: absolute;
top: 0px;
top: 20px;
right: 0;
}

Expand All @@ -63,20 +68,16 @@ nav a:hover {
}

.titulo-principal {
background-color: #F4D03F;
background-image: linear-gradient(132deg, #F4D03F 0%, #16A085 100%);
font-size: 23px;
color: white;
padding: 20px;
font-size: 16px;
background-color: var(--cor-de-fundo-titulo-principal);
background-image: var(--background-image);
flex-wrap: wrap;
}

.titulo-principal h1{
text-align: center;
font-size: 50px;
opacity: 0; /* Inicialmente invisível */
transform: translateY(-50px); /* Posição inicial acima */
animation: titleEntrance 1s forwards; /* Animação de entrada */
font-family: "Chakra Petch", sans-serif;
font-weight: 400;
font-style: normal;
padding: 5px;
}

h1 {
Expand Down

0 comments on commit ea32168

Please sign in to comment.