-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
98 lines (86 loc) · 1.83 KB
/
Copy pathstyle.css
File metadata and controls
98 lines (86 loc) · 1.83 KB
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
/* Estilos gerais */
body {
font-family: 'Arial', sans-serif;
background-color: #f4f4f9;
color: #333;
margin: 0;
padding: 20px;
display: flex;
flex-direction: column;
align-items: center;
}
h2 {
color: #2c3e50;
font-size: 2.5em;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
/* Estilos do formulário */
form.form-cadastro {
background-color: #ffffff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
width: 100%;
max-width: 500px;
margin-bottom: 20px;
}
form.form-cadastro p {
margin: 15px 0;
}
form.form-cadastro input[type="text"],
form.form-cadastro input[type="date"],
form.form-cadastro select {
width: 100%;
padding: 10px;
margin-top: 5px;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 1em;
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
form.form-cadastro input[type="button"] {
background-color: #3498db;
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
font-size: 1em;
transition: background-color 0.3s ease;
}
form.form-cadastro input[type="button"]:hover {
background-color: #2980b9;
}
/* Estilos da tabela */
table {
width: 100%;
max-width: 800px;
border-collapse: collapse;
margin-top: 20px;
background-color: #ffffff;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
table th, table td {
padding: 12px;
text-align: left;
border-bottom: 1px solid #ddd;
}
table th {
background-color: #3498db;
color: white;
font-weight: bold;
}
table tr:hover {
background-color: #f1f1f1;
}
/* Estilos responsivos */
@media (max-width: 600px) {
form.form-cadastro {
padding: 15px;
}
table th, table td {
padding: 8px;
}
}