-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
129 lines (114 loc) · 2.29 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/* Fonte do GNOME */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #222;
color: #fff;
}
/* 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 #444;
}
/* 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 mais escuro com bordas arredondadas e sombras */
form {
width: 90%;
margin: 20px auto;
background-color: #333;
padding: 20px;
border-radius: 8px;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Sombra mais pronunciada */
}
h1 {
font-size: 28px;
text-align: center;
margin-top: 20px;
color: #3a9b65; /* Tom mais escuro de verde */
}
h2 {
font-size: 24px;
margin-top: 20px;
color: #3a9b65; /* Tom mais escuro de verde */
}
label {
display: block;
margin-top: 10px;
color: #fff;
}
input[type="text"],
input[type="number"],
input[type="date"],
textarea {
width: 100%;
padding: 10px;
border: 1px solid #555;
border-radius: 5px;
box-sizing: border-box;
margin-top: 5px;
background-color: #444;
color: #fff;
}
button {
background-color: #2f7e49; /* Verde mais escuro */
color: #fff;
border: none;
border-radius: 5px;
padding: 12px 24px;
margin-top: 20px;
cursor: pointer;
transition: background-color 0.3s; /* Efeito de transição suave */
}
button:hover {
background-color: #2a6c41; /* Tonalidade mais escura do verde */
}
/* Ajustes para telas maiores */
@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: 28px;
margin-top: 40px;
margin-bottom: 20px;
}
}
/* Botões secundários */
#download-excel,
#sair-button {
background-color: #333; /* Cor mais escura */
color: #fff;
border: none;
border-radius: 5px;
padding: 12px 24px;
margin-top: 20px;
cursor: pointer;
transition: background-color 0.3s; /* Efeito de transição suave */
}
#download-excel:hover,
#sair-button:hover {
background-color: #444; /* Tonalidade mais escura */
}