-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
149 lines (117 loc) · 2.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
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/*
Couleur de texte bleue : 36478f
Couleur orange : eb7748
Couleur fond beige : fff1e8
*/
@font-face {
font-family: Lilita One;
src: url(fonts/LilitaOne-Regular.ttf);
}
* {
-webkit-print-color-adjust: exact !important; /* Chrome, Safari 6 – 15.3, Edge */
color-adjust: exact !important; /* Firefox 48 – 96 */
print-color-adjust: exact !important; /* Firefox 97+, Safari 15.4+ */
}
@page {
size: A4;
margin: 0;
}
@media print {
body, page[size="A4"] {
margin: 0;
box-shadow: 0;
}
formulaire {
display: none;
}
}
html, body, page {
/* Taille A4 */
width: 210mm;
height: 297mm;
margin: 0;
}
body {
color: #36478f;
font-size: 15pt;
font-family: Raleway;
}
page {
display: block;
background-image: url("imgs/fond.png");
background-size: 100% 100%;
background-repeat: no-repeat;
page-break-after: always;
padding-bottom: 10mm;
box-sizing: border-box;
}
header {
display: block;
height: 40mm;
background-image: url("imgs/logo.png");
background-repeat: no-repeat;
background-position: 20mm 50%;
background-size: 50mm 25mm;
padding: 0mm 10mm 0mm;
text-align: right;
}
month {
display: block;
margin-bottom: -2.5mm;
font-family: Lilita One;
font-size: 65pt;
text-transform: capitalize;
}
day-events-block {
display: block;
margin: 0mm 0mm 3mm 22mm;
padding: 1mm 3mm 2mm;
width: 170mm;
min-height: 29mm;
border: 3px solid #36478f;
border-radius: 25px;
background-color: #fff1e8;
}
date-block {
margin: 0mm 2mm 3mm -20mm;
/* margin: 2mm 2mm 3mm -20mm; */
padding: 2mm 1mm 2mm;
height: 24mm;
width: 30mm;
display: block;
border: 3px solid #eb7748;
border-radius: 25px;
background-color: white;
color: #eb7748;
font-weight: bold;
text-transform: uppercase;
text-align: center;
float: left;
}
date {
margin: -1mm -1mm -2mm;
display: block;
font-family: Lilita One;
font-size: 50pt;
color: #36478f;
}
event {
display: block;
}
hour {
color: #eb7748;
font-weight: bold;
}
name {
display: block;
margin: 0;
font-size: 22pt;
font-weight: bold;
}
description {
}
textarea {
display: block;
width: 85%;
height: 15mm;
}