-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.css
More file actions
137 lines (108 loc) · 1.98 KB
/
tailwind.css
File metadata and controls
137 lines (108 loc) · 1.98 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
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
@tailwind base;
@screen print {
@page {
margin-top: 0in;
margin-bottom: 0in;
margin-left: 0in;
margin-right: 0in;
}
body {
-webkit-print-color-adjust: exact !important;
color-adjust: exact !important;
color: black !important;
}
.page {
padding: theme(spacing.16) theme(spacing.16) !important;
}
.initial {
color: transparent !important;
text-shadow: 0 0 0 #fff !important;
}
h1, h2, h3, p, li {
color: black !important;
}
html {
font-size: 12.288px !important;
}
}
html {
font-size: 13.176471px;
}
/* For Letter size */
@screen sm {
html {
font-size: calc( 13.176471px + (16 - 13.176471) * (100vw - 640px) / (833 - 640) );
}
}
@screen md {
html {
font-size: calc( 12.288px + (16 - 12.288) * (100vw - 833px) / (1079.5 - 833) );
}
}
/* For A4 size */
/* @screen sm {
html {
font-size: calc( 13.176471px + (16 - 13.176471) * (100vw - 640px) / (811 - 640) );
}
}
@screen md {
html {
font-size: calc( 12.288px + (16 - 12.288) * (100vw - 811px) / (1051 - 811) );
}
} */
@screen lg {
html {
font-size: 16px;
}
}
@variants responsive {
.col-1 {
column-count: 1;
}
.col-2 {
column-count: 2;
}
}
.col-gap-md {
column-gap: 2.1875rem;
}
.col-fill {
column-fill: auto;
}
.col-break-avoid {
page-break-inside: avoid;
break-inside: avoid;
}
.col-break-after {
page-break-after: always;
break-after: always;
}
.hyphens-manual {
hyphens: manual;
}
.optimize-legibility {
text-rendering: optimizeLegibility;
}
.initials-container {
min-width: 2.31rem;
}
.change-color-fast {
transition: color 0.1s;
transition-timing-function: ease-in-out;
}
body .icon-parent::before {
content: "A";
width: 0px;
visibility: hidden;
display: inline-block;
}
@screen print {
.print\:border-inset {
box-shadow: inset 0 0 0 1px theme(colors.gray.400);
}
}
.border-inset {
box-shadow: inset 0 0 0 1px theme(colors.gray.400);
}
@tailwind components;
@tailwind utilities;