-
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
3b22171
commit 5500460
Showing
1 changed file
with
118 additions
and
121 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,127 +1,124 @@ | ||
/* Fonte do GNOME */ | ||
body { | ||
font-family: Arial, sans-serif; | ||
background-color: #222; | ||
color: #fff; | ||
} | ||
|
||
table { | ||
width: 100%; | ||
border-collapse: collapse; | ||
color: #fff; | ||
} | ||
|
||
th, td { | ||
text-align: left; | ||
padding: 8px; | ||
} | ||
|
||
th:nth-child(1), td:nth-child(1) { | ||
width: 20%; | ||
} | ||
|
||
th:nth-child(2), td:nth-child(2) { | ||
width: 20%; | ||
} | ||
|
||
th:nth-child(3), td:nth-child(3) { | ||
width: 20%; | ||
} | ||
|
||
th:nth-child(4), td:nth-child(4) { | ||
width: 20%; | ||
} | ||
|
||
th:nth-child(5), td:nth-child(5) { | ||
width: 20%; | ||
} | ||
|
||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | ||
background-color: #f2f2f2; | ||
color: #333; | ||
} | ||
|
||
/* Tabela com bordas mais suaves */ | ||
table { | ||
width: 100%; | ||
border-collapse: separate; | ||
border-spacing: 0; | ||
} | ||
|
||
th, td { | ||
text-align: left; | ||
padding: 12px; | ||
border-bottom: 1px solid #ccc; | ||
} | ||
|
||
/* Estilos para as colunas da tabela */ | ||
th:nth-child(1), td:nth-child(1), | ||
th:nth-child(2), td:nth-child(2), | ||
th:nth-child(3), td:nth-child(3), | ||
th:nth-child(4), td:nth-child(4), | ||
th:nth-child(5), td:nth-child(5) { | ||
width: 20%; | ||
} | ||
|
||
/* Formulário com aparência mais clara e bordas arredondadas */ | ||
form { | ||
width: 90%; | ||
margin: 20px auto; | ||
background-color: #fff; | ||
padding: 20px; | ||
border-radius: 5px; | ||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
h1 { | ||
font-size: 28px; | ||
text-align: center; | ||
margin-top: 20px; | ||
color: #333; | ||
} | ||
|
||
h2 { | ||
font-size: 24px; | ||
margin-top: 20px; | ||
color: #333; | ||
} | ||
|
||
label { | ||
display: block; | ||
margin-top: 10px; | ||
color: #333; | ||
} | ||
|
||
input[type="text"], | ||
input[type="number"], | ||
input[type="date"], | ||
textarea { | ||
width: 100%; | ||
padding: 10px; | ||
border: 1px solid #ccc; | ||
border-radius: 5px; | ||
box-sizing: border-box; | ||
margin-top: 5px; | ||
background-color: #f9f9f9; | ||
color: #333; | ||
} | ||
|
||
button { | ||
background-color: #4CAF50; | ||
color: #fff; | ||
border: none; | ||
border-radius: 5px; | ||
padding: 12px 24px; | ||
margin-top: 20px; | ||
cursor: pointer; | ||
transition: background-color 0.3s; | ||
} | ||
|
||
button:hover { | ||
background-color: #45a049; | ||
} | ||
|
||
/* Ajustes para telas maiores */ | ||
@media screen and (min-width: 768px) { | ||
form { | ||
width: 90%; | ||
margin: auto; | ||
background-color: #333; | ||
padding: 20px; | ||
box-shadow: 0px 0px 10px #aaa; | ||
width: 80%; | ||
} | ||
|
||
h1 { | ||
font-size: 24px; | ||
text-align: center; | ||
margin-top: 20px; | ||
font-size: 36px; | ||
text-align: left; | ||
margin-top: 40px; | ||
margin-bottom: 20px; | ||
} | ||
|
||
h2 { | ||
font-size: 20px; | ||
margin-top: 20px; | ||
} | ||
|
||
label { | ||
display: block; | ||
margin-top: 10px; | ||
color: #fff; | ||
} | ||
|
||
input[type="text"], | ||
input[type="number"], | ||
input[type="date"], | ||
textarea { | ||
width: 100%; | ||
padding: 5px; | ||
border: 1px solid #ccc; | ||
border-radius: 3px; | ||
box-sizing: border-box; | ||
margin-top: 5px; | ||
background-color: #444; | ||
color: #fff; | ||
} | ||
|
||
button { | ||
background-color: #4CAF50; | ||
color: #fff; | ||
border: none; | ||
border-radius: 3px; | ||
padding: 10px 20px; | ||
margin-top: 20px; | ||
cursor: pointer; | ||
transition: background-color 0.3s; | ||
} | ||
|
||
button:hover { | ||
background-color: #3e8e41; | ||
} | ||
|
||
@media screen and (min-width: 768px) { | ||
form { | ||
width: 80%; | ||
} | ||
|
||
h1 { | ||
font-size: 36px; | ||
text-align: left; | ||
margin-top: 40px; | ||
margin-bottom: 20px; | ||
} | ||
|
||
h2 { | ||
font-size: 24px; | ||
margin-top: 40px; | ||
margin-bottom: 20px; | ||
} | ||
} | ||
|
||
#download-excel, | ||
#sair-button { | ||
background-color: #333; | ||
color: #fff; | ||
border: none; | ||
border-radius: 3px; | ||
padding: 10px 20px; | ||
margin-top: 20px; | ||
cursor: pointer; | ||
transition: background-color 0.3s; | ||
} | ||
|
||
#download-excel:hover, | ||
#sair-button:hover { | ||
background-color: #555; | ||
} | ||
|
||
font-size: 28px; | ||
margin-top: 40px; | ||
margin-bottom: 20px; | ||
} | ||
} | ||
|
||
/* Botões secundários */ | ||
#download-excel, | ||
#sair-button { | ||
background-color: #ccc; | ||
color: #333; | ||
border: none; | ||
border-radius: 5px; | ||
padding: 12px 24px; | ||
margin-top: 20px; | ||
cursor: pointer; | ||
transition: background-color 0.3s; | ||
} | ||
|
||
#download-excel:hover, | ||
#sair-button:hover { | ||
background-color: #bbb; | ||
} |