-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfonts.css
47 lines (42 loc) · 1.04 KB
/
fonts.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
@font-face {
font-family: "vazir";
font-weight: 400;
font-style: normal;
src: url("/build/fonts/Vazir.woff") format("woff");
}
@font-face {
font-family: "vazir";
font-weight: 700;
font-style: normal;
src: url("/build/fonts/Vazir-Bold.woff") format("woff");
}
body,
button {
font-family: "vazir";
}
* {
-webkit-user-select: none;
}
/* PREVENT TEXT SIZE SCALLING */
/* iPhone, portrait & landscape. */
@media all and (max-device-width: 480px) {
html,
body,
p {
text-size-adjust: none !important;
-webkit-text-size-adjust: none !important;
-moz-text-size-adjust: none !important;
-ms-text-size-adjust: none !important;
}
}
/* iPad, portrait & landscape. */
@media all and (min-device-width: 768px) and (max-device-width: 1024px) {
html,
body,
p {
text-size-adjust: none !important;
-webkit-text-size-adjust: none !important;
-moz-text-size-adjust: none !important;
-ms-text-size-adjust: none !important;
}
}