-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex_template.html
85 lines (74 loc) · 1.32 KB
/
index_template.html
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
<html>
<link href="https://fonts.googleapis.com/css?family=Raleway&display=swap"
rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet">
<style>
body {
font-size: 10px;
font-family: 'Montserrat';
width: 2432px;
}
.parent {
display: grid;
grid-template-columns: repeat(32, 1fr);
grid-template-rows: repeat(10, 1fr);
grid-column-gap: 0px;
grid-row-gap: 0px;
}
.top-row {
border-top: 1px solid black;
}
.parent > .block {
display: grid;
grid-template-columns: 20% auto 20%;
grid-template-rows: 20% auto;
text-align: center;
border-bottom: 1px solid black;
border-right: 1px solid black;
width: 70px;
height: 124px;
padding-right: 2px;
padding-left: 2px;
}
.name {
grid-column-start: 1;
grid-column-end: 2;
grid-row-start: 1;
grid-row-end: 2;
}
.number {
font-style: thin;
grid-column-start: 3;
grid-column-end: 4;
grid-row-start: 1;
grid-row-end: 2;
}
.weekend {
background-color: #eeeeee;
}
.month {
grid-column-start: 1;
grid-column-end: 4;
grid-row-start: 2;
grid-row-end: 3;
margin-left: 2px;
font-size: 28px;
font-weight: bold;
}
.header {
border-bottom: 4px solid black;
padding-right: 50px;
direction: rtl;
font-size: 40px;
font-weight: bold;
}
</style>
<body>
<div>
year
</div>
<div class="parent">
template
</div>
</body>
</html>