-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvisualizarTeste.css
123 lines (106 loc) · 2.36 KB
/
visualizarTeste.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
color: #333;
}
section.Background-IMG {
background-image: url("Background\ Images/89597.jpg");
background-size: cover;
background-position: center;
height: 350px;
display: flex;
justify-content: center;
align-items: center;
}
section.Background-IMG h1 {
color: #fff;
font-size: 48px;
font-weight: bold;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}
#VisualizarTeste {
max-width: 1200px; /* Limita a largura máxima */
margin: 50px auto; /* Centraliza a div horizontalmente */
padding: 20px;
width: 90%; /* Ajuste a largura conforme necessário */
}
#VisualizarTeste div {
margin-bottom: 40px;
}
#VisualizarTeste h2 {
font-size: 24px;
color: #b64848;
margin-bottom: 10px;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
table th, table td {
padding: 12px;
text-align: left;
border-bottom: 1px solid #ddd;
}
table th {
background-color: #b64848;
color: #fff;
font-weight: bold;
}
table td {
color: #555;
}
table tr:hover {
background-color: #f0f0f0;
}
/* Alinha o cabeçalho e as células das colunas "Preço" e "Telefone" à direita */
table th:nth-child(3),
table td:nth-child(3), /* Alinha "Preço" à direita */
table th:nth-child(2),
table td:nth-child(2) { /* Alinha "Telefone" à direita */
text-align: right;
}
.botao-home {
position: absolute;
top: 20px;
right: 20px;
background-color: #b64848;
color: #fff;
text-decoration: none;
padding: 5px 7px;
border-radius: 5px;
font-size: 16px;
font-weight: bold;
transition: background-color 0.3s ease, transform 0.2s ease;
z-index: 10;
}
.botao-home:hover {
background-color: #0073e6;
transform: scale(1.05);
}
.LogOut {
position: absolute;
top: 60px;
right: 20px;
background-color: #b64848;
color: #fff;
text-decoration: none;
padding: 5px 7px;
border-radius: 5px;
font-size: 16px;
font-weight: bold;
transition: background-color 0.3s ease, transform 0.2s ease;
z-index: 10;
}
.LogOut:hover {
background-color: #0073e6;
transform: scale(1.05);
}