-
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.
Merge pull request #17 from unb-mds/new_style
Mudar estilo do projeto em geral
- Loading branch information
Showing
5 changed files
with
200 additions
and
173 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,63 +1,72 @@ | ||
.pad { | ||
padding: 20px; | ||
} | ||
table { | ||
width: 100%; | ||
border-collapse: collapse; | ||
margin-top: 20px; | ||
} | ||
table, th, td { | ||
border: 2px solid black; | ||
} | ||
th, td { | ||
padding: 8px; | ||
text-align: left; | ||
width: 300px; | ||
} | ||
tr:nth-of-type(odd) { | ||
background-color: #eee; | ||
} | ||
.modal { | ||
display: none; | ||
position: fixed; | ||
z-index: 1; | ||
left: 0; | ||
top: 0; | ||
width: 100%; | ||
height: 100%; | ||
overflow: auto; | ||
background-color: rgba(0, 0, 0, 0.4); | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
.modal-content { | ||
background-color: white; | ||
padding: 20px; | ||
border-radius: 5px; | ||
width: 230px; | ||
} | ||
.modal-header { | ||
font-size: 18px; | ||
font-weight: bold; | ||
margin-bottom: 10px; | ||
} | ||
.modal-footer { | ||
text-align: center; | ||
} | ||
.btn { | ||
padding: 8px 16px; | ||
background-color: #1a8c86; | ||
color: white; | ||
border: none; | ||
border-radius: 5px; | ||
cursor: pointer; | ||
} | ||
.btn:hover { | ||
background-color: #0037ff; | ||
} | ||
.btn-close { | ||
background-color: #d9534f; | ||
} | ||
.btn-close:hover { | ||
background-color: #c9302c; | ||
.pad { | ||
padding: 20px; | ||
} | ||
|
||
table { | ||
width: 100%; | ||
border-collapse: collapse; | ||
margin-top: 20px; | ||
} | ||
|
||
table, th, td { | ||
border: 1px solid black; | ||
} | ||
|
||
th, td { | ||
padding: 8px; | ||
text-align: left; | ||
} | ||
|
||
.modal { | ||
display: none; | ||
position: fixed; | ||
z-index: 1; | ||
left: 0; | ||
top: 0; | ||
width: 100%; | ||
height: 100%; | ||
overflow: auto; | ||
background-color: rgba(0, 0, 0, 0.4); | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
.modal-content { | ||
background-color: white; | ||
padding: 20px; | ||
border-radius: 5px; | ||
width: 400px; | ||
} | ||
|
||
.modal-header { | ||
font-size: 18px; | ||
font-weight: bold; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.modal-footer { | ||
text-align: right; | ||
} | ||
|
||
.btn { | ||
padding: 8px 16px; | ||
background-color: #06c; | ||
color: white; | ||
padding: 10px 20px; | ||
border: none; | ||
border-radius: 20px; | ||
font-size: 16px; | ||
cursor: pointer; | ||
} | ||
|
||
.btn:hover { | ||
background-color: #0071e3; | ||
} | ||
|
||
.btn-close { | ||
background-color: #c9302c; | ||
} | ||
|
||
.btn-close:hover { | ||
background-color: #d9534f; | ||
} |
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.