-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalendario.css
56 lines (45 loc) · 858 Bytes
/
calendario.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
.calendario {
display: flex;
flex-direction: column;
width: 500px;
background-color: #fff;
text-align: center;
}
.calendario .header {
display: flex;
flex-direction: row;
justify-content: space-around;
margin-bottom: 30px;
padding: 10px;
color: #fff;
background-color: rgb(0,8,88);
}
.calendario .dias {
cursor: pointer;
}
.calendario .dias th {
color: rgb(0,8,88);
background-color: #fff;
}
.calendario tr:nth-child(even) {
background-color: #fff;
}
.calendario td:hover {
background-color: #ccc;
}
.calendario td {
padding: 5px;
}
.calendario td.agendado {
background-color: rgb(0,158,170);
color: #fff;
}
@media(max-width: 768px) {
.calendario {
max-width: 95vw;
margin: 15px auto;
}
.coluna-desktop {
display: none;
}
}