-
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
707515a
commit 65b7d8d
Showing
3 changed files
with
162 additions
and
3,310 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
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,60 +1,74 @@ | ||
|
||
.notification-container { | ||
max-width: 500px; | ||
margin: 0 auto; | ||
padding: 20px; | ||
border: 1px solid #ddd; | ||
border-radius: 8px; | ||
background-color: #f9f9f9; | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
.notification-container h2 { | ||
text-align: center; | ||
color: #333; | ||
} | ||
|
||
.form-group { | ||
margin-bottom: 15px; | ||
margin-right: 20px; | ||
} | ||
|
||
.form-group label { | ||
display: block; | ||
margin-bottom: 5px; | ||
font-weight: bold; | ||
color: #555; | ||
} | ||
|
||
.form-group input[type="text"], | ||
.form-group textarea, | ||
.form-group input[type="file"] { | ||
width: 100%; | ||
padding: 10px; | ||
border: 1px solid #ccc; | ||
border-radius: 4px; | ||
font-size: 16px; | ||
} | ||
|
||
.form-group textarea { | ||
resize: vertical; | ||
height: 100px; | ||
} | ||
|
||
.send-button { | ||
display: block; | ||
width: 100%; | ||
padding: 10px; | ||
background-color: #8c52ff; | ||
color: #fff; | ||
border: none; | ||
border-radius: 4px; | ||
font-size: 16px; | ||
cursor: pointer; | ||
transition: background-color 0.3s; | ||
} | ||
|
||
.send-button:hover { | ||
background-color: #6f42c1; | ||
} | ||
|
||
max-width: 500px; | ||
margin: 0 auto; | ||
padding: 20px; | ||
border: 1px solid #ddd; | ||
border-radius: 8px; | ||
background-color: #f9f9f9; | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
.notification-container h2 { | ||
text-align: center; | ||
color: #333; | ||
} | ||
|
||
.form-group { | ||
margin-bottom: 15px; | ||
} | ||
|
||
.form-group label { | ||
display: block; | ||
margin-bottom: 5px; | ||
font-weight: bold; | ||
color: #555; | ||
} | ||
|
||
.form-group input[type="text"], | ||
.form-group input[type="number"], | ||
.form-group input[type="datetime-local"], | ||
.form-group select, | ||
.form-group textarea, | ||
.form-group input[type="file"] { | ||
width: 100%; | ||
padding: 10px; | ||
border: 1px solid #ccc; | ||
border-radius: 4px; | ||
font-size: 16px; | ||
box-sizing: border-box; | ||
} | ||
|
||
.form-group select { | ||
appearance: none; /* Para mejorar el estilo del dropdown */ | ||
background-color: #fff; | ||
cursor: pointer; | ||
} | ||
|
||
.form-group textarea { | ||
resize: vertical; | ||
height: 100px; | ||
} | ||
|
||
.send-button { | ||
display: block; | ||
width: 100%; | ||
padding: 10px; | ||
background-color: #8c52ff; | ||
color: #fff; | ||
border: none; | ||
border-radius: 4px; | ||
font-size: 16px; | ||
cursor: pointer; | ||
transition: background-color 0.3s; | ||
} | ||
|
||
.send-button:hover { | ||
background-color: #6f42c1; | ||
} | ||
|
||
/* Estilos adicionales para mejorar la apariencia del dropdown */ | ||
.form-group select:focus { | ||
outline: none; | ||
border-color: #8c52ff; | ||
box-shadow: 0 0 5px rgba(140, 82, 255, 0.3); | ||
} |
Oops, something went wrong.