-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
80 lines (65 loc) · 960 Bytes
/
main.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
body {
width: 80%;
margin: auto;
font-size: 0.9rem;
font-family: sans-serif;
}
.container {
display: grid;
grid-gap: 20px;
grid-template-columns: 1fr 1fr;
}
table {
border-collapse: collapse;
}
td {
/* border: 1px solid black; */
background-color: #fff;
height: 40px;
width: 50px;
text-align: center;
}
button {
border: 0px;
background-color: #e6e6e6
}
#next,
#previous {
width: 30px;
}
.dia_nombre,
#mes_nombre {
height: 20px;
text-align: center;
}
#button_previous,
#button_next {
cursor: pointer;
height: 100%;
width: 100%;
}
.dias>td:hover {
cursor: pointer;
background-color: cyan;
}
.no_day {
background-color: #e6e6e6;
}
.today {
background-color: #c15ac1;
}
.evento_titulo {
width: 100%;
}
.active {
background-color: coral;
}
.hide {
display: none;
}
.show {
display: block;
}
.tiene_evento {
background-color: darkcyan;
}