-
Notifications
You must be signed in to change notification settings - Fork 0
/
home-vendedor.css
78 lines (62 loc) · 1.08 KB
/
home-vendedor.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
.agendamentos {
display: flex;
flex-direction: column;
align-items: center;
}
.agendamentos > div {
display: flex;
flex-direction: row;
}
.visita-agendada {
margin-left: 50px;
}
.propostas {
display: flex;
flex-direction: column;
align-items: center;
}
.analises {
display: flex;
flex-direction: column;
align-items: center;
}
.graficos {
width: 1000px;
}
table.propostas {
border: none;
border-collapse: collapse;
cursor: pointer;
}
.propostas th {
padding: 10px 70px;
border: none;
color: #fff;
background-color: rgb(0,158,170);
}
.propostas td {
padding: 10px 70px;
border: none;
}
.propostas tr:hover {
background-color: #ccc;
}
.propostas tr:nth-child(even) {
background-color: #eee;
}
.propostas tr:nth-child(even):hover {
background-color: #ccc;
}
@media(max-width: 768px) {
.agendamentos > div {
display: flex;
flex-direction: column;
}
.propostas td,
.propostas th {
padding: 10px 20px;
}
.graficos {
width: 350px;
}
}