-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathshaper-taper.css
More file actions
78 lines (71 loc) · 1.17 KB
/
shaper-taper.css
File metadata and controls
78 lines (71 loc) · 1.17 KB
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
body {
margin: 0;
font-family:Arial, Helvetica, sans-serif;
font-size:18px;
}
.hello{
padding-top:0.5in;
}
.domino-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(1.8in,1fr));
grid-template-rows: repeat(auto-fit, auto);
/* grid-column-gap: 0.2in;
grid-row-gap: 2in; */
}
.domino {
page-break-inside: avoid;
}
nav {
background-color: rgb(10, 110, 204);
color: #eee;
padding: 0.5in;
}
.options {
display: flex;
flex-direction: row;
}
.options label {
flex: 1;
}
.options input[type="text"] {
width: 100px;
}
.print-button {
font-size: 2rem;
background-color: greenyellow;
border-radius: 10px;
border: solid 3px black;
cursor: pointer;
}
@media print {
.hello, nav, .print-button {
display: none;
}
}
@media screen {
h1,h2,p,.domino-grid {
padding: 0 0.5in;
}
}
.project-name {
font-family: "Stardos Stencil";
font-weight: normal;
font-size: 0.25in;
width:100%;
border:0;
background-color:beige;
}
h2 {
margin-top: 0;
}
.warning { background-color:yellow; }
.if-safari {
visibility:none;
}
body.is-safari .if-safari {
visibility:visible;
}
body.is-safari .domino {
transform: scale(0.935);
}