-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/unb-mds/LicitaBSB-24.1
- Loading branch information
Showing
14 changed files
with
176 additions
and
190 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 @@ | ||
import React from 'react'; | ||
import style from '../carrosel/style.module.css' | ||
|
Empty file.
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
18 changes: 15 additions & 3 deletions
18
frontend/src/components/layout/custom-input-checkbox/index.jsx
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -1,31 +1,87 @@ | ||
.newsletter{ | ||
.newsletter { | ||
display: flex; | ||
flex-direction: row; | ||
align-items: center; | ||
justify-content: center; | ||
text-align: center; | ||
flex-direction: column; | ||
gap: 10px; | ||
padding-top: 100px; | ||
justify-content: space-between; | ||
gap: 20px; | ||
padding: 30px; | ||
background-color: #F1ECE8; | ||
border-radius: 10px; | ||
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); | ||
|
||
} | ||
|
||
.newsletter h1{ | ||
font-size: 20px; | ||
.newsletter h1 { | ||
font-size: 24px; | ||
font-weight: bold; | ||
margin: 0; | ||
color: #333; | ||
} | ||
|
||
.newsletter button{ | ||
background-color: transparent; | ||
border: 1px solid black; | ||
border-radius: 3px; | ||
padding: 5px; | ||
cursor: pointer; | ||
.newsletter h2 { | ||
font-size: 16px; | ||
margin-top: 10px; | ||
line-height: 1.5; | ||
color: #333; | ||
max-width: 60%; | ||
} | ||
|
||
.newsletter-form { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: flex-start; | ||
gap: 10px; | ||
width: 100%; | ||
} | ||
|
||
.newsletter input{ | ||
border-top: none; | ||
border-left: none; | ||
border-right: none; | ||
border-bottom: 2px solid black; | ||
width: 300px; | ||
.newsletter input { | ||
border: 1px solid #333; | ||
border-radius: 5px; | ||
width: 582px; | ||
height: 48px; | ||
outline: none; | ||
padding: 10px; | ||
box-sizing: border-box; | ||
font-size: 16px; | ||
} | ||
|
||
.newsletter button { | ||
background-color: #333; | ||
color: white; | ||
border: none; | ||
border-radius: 5px; | ||
padding: 10px 20px; | ||
height: 48px; | ||
cursor: pointer; | ||
transition: background-color 0.3s ease; | ||
font-size: 16px; | ||
width: 203px; | ||
} | ||
|
||
.newsletter button:hover { | ||
background-color: #555; | ||
} | ||
|
||
.newsletter-image { | ||
flex: 1; | ||
display: flex; | ||
justify-content: flex-end; | ||
align-items: center; | ||
padding: 0; | ||
} | ||
|
||
.newsletter img { | ||
width: 351px; | ||
height: 309px; | ||
object-fit: cover; | ||
border-radius: 10px; | ||
} | ||
|
||
|
||
@media(max-width: 1200px){ | ||
|
||
} | ||
|
||
@media(max-width: 800px){ | ||
|
||
} |
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
Oops, something went wrong.