-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (67 loc) · 1.12 KB
/
style.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
body {
font-family: sans-serif;
}
.table {
border-collapse: collapse;
width: 8%;
float: left;
padding: 5px;
margin-left: 5px;
}
td, th {
border: 2px solid #969595;
}
.py-1 {
padding-top: 15px;
}
#titulo-etiqueta {
margin-bottom: 0.5rem;
color: #555;
}
.anio {
/* @include borde();
padding:1px; */
display: flex;
background-color: #AAA;
border-right: solid 1px #AAA;
}
.mes {
gap: 1px;
display: grid;
grid-template: "a a a" auto "b c d" auto/1.5fr 1fr 5fr;
width: 100%;
height: -webkit-min-content;
height: -moz-min-content;
height: min-content;
}
.mes * { /* ! No div porque sobreescribe los demas. */
background: white;
}
.mes-12 .mes-contenido {
border-right: solid 1px #AAA;
}
.mes-nombre {
grid-area: a;
padding: 0.5rem;
background: #555;
color: white;
}
.mes-dato {
text-align: center;
font-size: smaller;
}
.mes-fecha {
background-color: #EEE;
border-left: solid 1px #AAA;
}
.mes-dia-D {
background-color: #EEE;
}
.mes-dia-D + div {
background-color: #EEE;
}
.mes-contenido {
height: 100%;
top: -1px;
position: relative;
}/*# sourceMappingURL=style.css.map */