-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprint.css
100 lines (86 loc) · 1.95 KB
/
print.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
body {
font-family: Verdana, Geneva, Tahoma, sans-serif;
color: #444
}
h1 {
font-size: 2.3em;
text-align: center;
color: #333
}
.VContainer {
display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
display: -ms-flexbox; /* TWEENER - IE 10 */
display: -webkit-flex; /* NEW - Chrome */
display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
flex-direction: vertical;
justify-content: center;
}
.HContainer {
display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
display: -ms-flexbox; /* TWEENER - IE 10 */
display: -webkit-flex; /* NEW - Chrome */
display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
flex-direction: horizontal;
justify-content: center;
}
button {
visibility: hidden;
}
#table {
width: 600px;
height: 600px;
font-size: 30px;
display: table;
margin: 2em auto;
border-collapse: collapse;
font-family: Calibri, sans-serif;
}
.tr {
display: table-row;
}
.tr:first-child {
border-top: solid 4px;
}
.tr:nth-child(3n) .td {
border-bottom: solid 4px;
}
.td {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
width: 100%;
padding-top: 100%; /* 1:1 Aspect Ratio */
display: table-cell;
border: solid 1px;
padding: 2px;
height: 2em;
width: 2em;
text-align: center;
vertical-align: middle;
}
.td:first-child {
border-left: solid 4px;
}
.td:nth-child(3n) {
border-right: solid 4px;
}
.Circle{
background-color: white;
display: block;
height: 100%;
width: 100%;
border-radius: 50%;
border: none;
color: #000;
line-height: 50px;
text-align: center;
}
.label {
text-align: center;
font-size: 20px;
}
footer {
visibility: hidden;
}