Skip to content

Commit

Permalink
gello
Browse files Browse the repository at this point in the history
  • Loading branch information
arthursuzuki committed Oct 17, 2023
1 parent 808592a commit 02f3cf6
Showing 1 changed file with 18 additions and 37 deletions.
55 changes: 18 additions & 37 deletions project_bloom/app_bloom/templates/inicial/cadastrocrianca.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
<html>
<head>
<style>
body {
font-family: Arial, sans-serif;
body{
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: 100vh;
margin: 0;
}
Expand All @@ -17,7 +18,7 @@
top: 0;
left: 0;
width: 100%;
height: 30px;
height: 90px;
background-color: #F2F2F2;
display: flex;
justify-content: space-between;
Expand All @@ -28,34 +29,41 @@

#container {
width: 100%;
height: 80%;
position: relative;
background: #f0f0f0;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
padding-top: 90px; /* Leva em consideração a altura do cabeçalho */
}

.form-container {
width: 70%;
margin: 0 auto;
padding: 20px;
background: white;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: center;
}

.form-element {
margin-bottom: 20px;
}

.form-element-label {
font-size: 18px;
}

.form-input {
width: 100%;
font-size: 16px;
padding: 10px;
box-sizing: border-box;
}

#submit-button {
width: 100%;
background: #080808;
Expand All @@ -66,9 +74,11 @@
border-radius: 5px;
cursor: pointer;
}

#submit-button:hover {
background: #8e399c;
}

.required {
color: red;
}
Expand All @@ -82,9 +92,8 @@
#links {
display: flex;
gap: 20px;
align-items: left;
align-items: center;
justify-content: flex-start;
margin-left: 15px;
}

#links a {
Expand All @@ -93,34 +102,6 @@
cursor: pointer;
}

#images {
display: flex;
align-items: center;
justify-content: center;
}

#usuario {
display: flex;
align-items: center;
gap: 10px;
margin-right: 20px;
width: 50px;
}

#images img {
width: 150px;
height: auto;
margin-bottom: 20px;
}

#text {
text-align: center;
color: #333;
font-size: 16px;
font-weight: lighter;
font-family: 'Trebuchet MS', sans-serif;
}

</style>

<script>
Expand Down

0 comments on commit 02f3cf6

Please sign in to comment.