-
-
Notifications
You must be signed in to change notification settings - Fork 203
/
tailwind.css
85 lines (69 loc) · 1.36 KB
/
tailwind.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
@import "docs/fira-go.css";
@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities";
@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;
}
}
.initials-container {
min-width: 2.31rem;
}
body .icon-parent::before {
content: "A";
width: 0px;
visibility: hidden;
display: inline-block;
}