-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e222d67
commit de5a392
Showing
23 changed files
with
2,697 additions
and
1,752 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/* profile.card.css */ | ||
|
||
body { | ||
font-family: Arial, sans-serif; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
margin: 0; | ||
background-color: #121212; /* Cor de fundo escura */ | ||
} | ||
|
||
img { | ||
transition: transform 0.3s, box-shadow 0.5s; | ||
border-radius: 50%; | ||
width: 43%; | ||
box-shadow: -3px -3px 10px rgba(0, 183, 255, 0.7), | ||
3px 3px 10px rgba(0, 255, 106, 0.7); /* Sombra clara para imagem */ | ||
} | ||
|
||
img:hover { | ||
box-shadow: -3px -3px 10px rgba(140, 222, 255, 0.7), | ||
3px 3px 10px rgba(140, 255, 188, 0.7); /* Sombra clara ao passar o mouse */ | ||
cursor: pointer; | ||
} | ||
|
||
.profile-card { | ||
position: relative; | ||
width: 300px; | ||
padding: 20px; | ||
background: #1e1e1e; /* Cor de fundo do card escura */ | ||
border-radius: 10px; | ||
box-shadow: rgba(124, 124, 124, 0.7) 0px 0px 20px; /* Sombra escura ao redor do card */ | ||
} | ||
|
||
.profile-header { | ||
text-align: center; | ||
} | ||
|
||
.profile-pic { | ||
width: 100px; | ||
height: 100px; | ||
border-radius: 50%; | ||
object-fit: cover; | ||
border: 2px solid #333; /* Borda clara para a imagem no tema escuro */ | ||
} | ||
|
||
.profile-body { | ||
text-align: center; | ||
margin-top: 10px; | ||
} | ||
|
||
.profile-name { | ||
font-size: 1.5em; | ||
color: #ffffff; /* Cor do texto do nome em branco */ | ||
margin: 0; | ||
} | ||
|
||
.profile-bio { | ||
font-size: 1em; | ||
color: #b0b0b0; /* Cor do texto da bio em cinza claro */ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<!DOCTYPE html> | ||
<html lang="pt-BR"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Card de Perfil</title> | ||
<link rel="stylesheet" href="dark.profile.card.css"> | ||
</head> | ||
<body> | ||
<div class="profile-card"> | ||
<div class="border-animada"></div> | ||
<div class="profile-header"> | ||
<a href="moon.html"> | ||
<img src="https://th.bing.com/th/id/OIG4.6CREuRdNl0XdLIo6i8Ed?w=270&h=270&c=6&r=0&o=5&pid=ImgGn" alt="Logo do site (Uma arvore minimalista dentro de um círculo branco)"> | ||
</a> </div> | ||
<div class="profile-body"> | ||
<h2 class="profile-name">Nathã Cazelato Leite</h2> | ||
<p class="profile-bio">Pagina meramente ilustrativa criada com o proposito único de demosntar a funcionalidade do botão.</p> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
Oops, something went wrong.