-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle_matricula.css
80 lines (71 loc) · 1.48 KB
/
style_matricula.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
/* Estilização geral */
body {
font-family: Arial, sans-serif;
background-color: #f9f9f9;
color: #333;
margin: 20px;
text-align: center;
}
/* Estilo do título principal */
h1 {
color: #007bff;
font-size: 28px;
margin-bottom: 20px;
}
/* Estilo do formulário */
form {
max-width: 600px;
margin: 0 auto;
background-color: #ffffff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
text-align: left;
}
/* Estilo para rótulos */
form label {
display: block;
font-weight: bold;
margin-bottom: 8px;
color: #333;
}
/* Estilo para campos de entrada */
form input[type="text"],
form input[type="number"],
form select {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 14px;
box-sizing: border-box;
}
/* Estilo para botão de enviar */
form input[type="submit"] {
background-color: #007bff;
color: #ffffff;
border: none;
padding: 12px 20px;
border-radius: 4px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s, transform 0.2s;
width: 100%;
}
form input[type="submit"]:hover {
background-color: #0056b3;
transform: scale(1.03);
}
/* Estilo para o link "Voltar ao menu inicial" */
a {
display: inline-block;
margin-top: 20px;
text-decoration: none;
color: #007bff;
font-weight: bold;
transition: color 0.3s;
}
a:hover {
color: #0056b3;
}