Skip to content

Commit

Permalink
feat: Integração da tela Cadastro com o Rails
Browse files Browse the repository at this point in the history
  • Loading branch information
jazzer0 committed Jun 4, 2024
2 parents 4884b53 + a42507e commit a7a58a7
Show file tree
Hide file tree
Showing 7 changed files with 293 additions and 256 deletions.
113 changes: 0 additions & 113 deletions view/package-lock.json

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

2 changes: 1 addition & 1 deletion view/src/components/SideBar/SideBar.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
}

.embaixo{
margin-top: 10px;
margin-top: 310px;
display: flex;
flex-direction: column;

Expand Down
5 changes: 3 additions & 2 deletions view/src/pages/Documents/Documents.css
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,14 @@ body{
font-size: 20px;
background-color: #d2d3e4fa;
border: none;
outline: none;
outline: none;
margin-top: 10px;
}

.botao{
font-size: 20px;
width: 200px;
margin-left: 155px;
margin-right: 150px;
margin-top: -20px;

}
1 change: 0 additions & 1 deletion view/src/pages/Documents/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ function Documents() {
<div className='documentosTitulo'>
<h1>Documentos</h1>
</div>

<div className='documentosCorpo'>
<div className='img-text-container'>
<img src="plus.svg" alt="img-plus"
Expand Down
8 changes: 3 additions & 5 deletions view/src/pages/Finance/Finance.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,17 @@ body {

#paginaFinance {
background-color: #fdfdfd;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: #070606;
padding: 20px;
}

.financeTitulo {
margin-bottom: 2rem;
margin-top: 3rem;
text-align: center;
font-size: 2.5rem;
color: #070606;
font-size: 200%;
}

.img-text-container2 {
Expand Down Expand Up @@ -60,6 +57,7 @@ body {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.336);
margin-bottom: 2rem;
color: #070606;
margin-left: 120px;
}

.financeCorpo h2, .financeCorpo h3 {
Expand Down
188 changes: 145 additions & 43 deletions view/src/pages/Meeting/Meeting.css
Original file line number Diff line number Diff line change
@@ -1,43 +1,145 @@
.container{
width:100%;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: space-around;
}

.container img {
height:500px
}

.container p {
font-size: 18px;
}

.container span{
color: purple;
}

.btn {
width: 250px;
height: 100px;
font-size: 25px;
font-weight: bold;
border: 0;
border-radius: 18px;
color: #fdfdfd;
background-color: #414191;
cursor: pointer;
}

.btn:hover{
text-decoration: underline;
}

#paginaMeeting {
background-color: #414191;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
/* Meeting.css */

body {
font-family: 'Poppins', monospace;
}

.documentosTitulo {
margin-top: 3rem;
text-align: center;
font-size: 200%;
}

.documentosCorpo {
text-align: left;
margin-left: 180px;
left: 9rem;
width: 80%;
font-family: 'Poppins', monospace;
padding: 20px;
}

.img-text-container {
display: flex;
align-items: center;
margin-bottom: 20px;
}

.fonte {
font-size: 40px;
margin-left: 20px;
margin-top: -2px;
}

.fonte2 {
font-size: 25px;
}

.trash {
height: 20px;
width: 20px;
margin-right: 25px;
margin-top: 15px;
margin-left: 150px;
cursor: pointer;
}

.popup {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: #d2d3e4fa;
padding: 20px;
width: 550px;
border-radius: 8%;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.336);
z-index: 999;
display: flex;
flex-direction: column;
}

.popup-content {
display: flex;
flex-direction: column;
}

.close {
font-size: 36px;
cursor: pointer;
margin-left: auto;
margin-bottom: 20px;
}

.caixa {
display: flex;
margin-bottom: 10px;
font-size: 20px;
flex-direction: column;
}

.caixa label {
width: 100%;
margin-bottom: 10px;
}

.caixa input {
font-size: 20px;
background-color: #d2d3e4fa;
border: none;
outline: none;
padding: 10px;
}

.botao {
font-size: 20px;
width: 100%;
padding: 10px;
background-color: #2683b5;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
margin-top: 20px;
}

.botao:hover {
text-decoration: underline;
}

.displayed-links {
margin-top: 20px;
}

.presence-table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}

.presence-table th, .presence-table td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
}

.presence-table th {
background-color: #f2f2f2;
font-weight: bold;
}

.presence-table tr:hover {
background-color: #f5f5f5;
}

.presence-table input[type="checkbox"] {
width: 20px;
height: 20px;
}

.meeting {
border: 1px solid #ddd;
padding: 20px;
margin-bottom: 20px;
border-radius: 8px;
}
Loading

0 comments on commit a7a58a7

Please sign in to comment.