-
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
99e4879
commit 0de47c1
Showing
10 changed files
with
145 additions
and
16 deletions.
There are no files selected for viewing
Binary file not shown.
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,17 @@ | ||
{% extends 'base.html' %} | ||
|
||
{% block title %} | ||
Criar Conta | ||
{% endblock %} | ||
|
||
{% block head %} | ||
{% load static %} | ||
<link rel="stylesheet" type="text/css" href="{% static 'css/style_criarconta.css' %}"/> | ||
{% endblock %} | ||
|
||
{% block content %} | ||
<div class="content"> | ||
<h2>Criar Conta</h2> | ||
|
||
</div> | ||
{% endblock %} |
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,17 @@ | ||
{% extends 'base.html' %} | ||
|
||
{% block title %} | ||
Edição de Perfil | ||
{% endblock %} | ||
|
||
{% block head %} | ||
{% load static %} | ||
<link rel="stylesheet" type="text/css" href="{% static 'css/style_editarperfil.css' %}"/> | ||
{% endblock %} | ||
|
||
{% block content %} | ||
<div class="content"> | ||
<h2>Edição do Perfil</h2> | ||
|
||
</div> | ||
{% endblock %} |
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
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
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
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,3 @@ | ||
.content { | ||
padding-top: 4.68rem; | ||
} |
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,4 @@ | ||
.content{ | ||
padding-top: 4.68rem; | ||
min-height: 100vh; | ||
} |
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,50 @@ | ||
|
||
.header { | ||
min-height: 100vh; | ||
position: relative; /* Adicione uma posição relativa para que possamos posicionar o pseudo-elemento */ | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
.header::before { | ||
content: ""; | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
height: 100%; | ||
background-image: url("../images/background_netflix.jpg"); | ||
background-repeat: no-repeat; | ||
background-blend-mode: overlay; | ||
background-size: cover; /* Ajuste para cobrir todo o cabeçalho */ | ||
background-color: rgb(0, 0, 0, 0.7); | ||
opacity: 0.7; /* Opacidade para a imagem de fundo */ | ||
z-index: -1; /* Coloque o pseudo-elemento atrás do conteúdo */ | ||
} | ||
|
||
.title-header { | ||
color: rgb(255, 255, 255); | ||
font: 2rem bold; | ||
padding: 0.8rem; | ||
} | ||
|
||
.paragraph { | ||
padding: 0.8rem; | ||
font: 1.2rem bold; | ||
} | ||
|
||
.group-btn { | ||
display: flex; | ||
flex-direction: row; | ||
gap: 0.3rem; | ||
justify-content: center; | ||
align-items: center; | ||
flex-wrap: wrap; | ||
} | ||
|
||
.btn-access { | ||
background-color: rgb(255, 0, 0); | ||
padding: 0.55rem; | ||
} |
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