Skip to content

Commit a32769b

Browse files
committed
Merge pull request #213 from AmirMehrabi/master
Add standard farsi fonts to the project
2 parents 6c04853 + e9355a5 commit a32769b

16 files changed

+24
-5
lines changed

public/css/fa-fonts.css

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
html {
2+
font-family: 'Vazir', 'Lato', sans-serif;
3+
-webkit-text-size-adjust: 100%;
4+
-ms-text-size-adjust: 100%;
5+
}
6+
7+
body {
8+
margin: 0;
9+
font-family: 'Vazir', 'Lato', sans-serif;
10+
}
11+
12+
13+
a p h1 h2 h3 h4 h5 span body html * {
14+
font-family: 'Gandom', 'Vazir';
15+
}

public/css/fonts/Gandom-Bold.eot

60.9 KB
Binary file not shown.

public/css/fonts/Gandom-Bold.ttf

60.6 KB
Binary file not shown.

public/css/fonts/Gandom-Bold.woff

29.6 KB
Binary file not shown.

public/css/fonts/Gandom.eot

60.1 KB
Binary file not shown.

public/css/fonts/Gandom.ttf

59.9 KB
Binary file not shown.

public/css/fonts/Gandom.woff

28.3 KB
Binary file not shown.

public/css/fonts/Gandom.woff2

28.3 KB
Binary file not shown.

public/css/fonts/Vazir-Bold.eot

57.3 KB
Binary file not shown.

public/css/fonts/Vazir-Bold.ttf

57 KB
Binary file not shown.

public/css/fonts/Vazir-Bold.woff

27.9 KB
Binary file not shown.

public/css/fonts/Vazir.eot

56.5 KB
Binary file not shown.

public/css/fonts/Vazir.ttf

56.3 KB
Binary file not shown.

public/css/fonts/Vazir.woff

27.1 KB
Binary file not shown.

public/css/fonts/Vazir.woff2

29.4 KB
Binary file not shown.

src/views/master.blade.php

+9-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
66
<link rel="shortcut icon" href="{{asset('packages/serverfireteam/panel/favicon.ico')}}" type="image/x-icon">
77
<link rel="icon" href="{{asset('packages/serverfireteam/panel/favicon.ico')}}" type="image/x-icon">
8-
8+
99
<meta name="viewport" content="width=device-width, initial-scale=1">
1010
<meta name="description" content="">
1111
<meta name="author" content="">
@@ -20,7 +20,7 @@
2020
<title>{{isset($title) ? $title : 'Panel'}}</title>
2121
<!-- compiled styles -->
2222

23-
23+
2424
<link href="{{asset("packages/serverfireteam/panel/css/styles.css")}}" rel="stylesheet" type="text/css">
2525
<link href="{{asset("packages/serverfireteam/panel/font-icon/icomoon/style.css")}}" rel="stylesheet" type="text/css">
2626

@@ -31,6 +31,10 @@
3131
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
3232
<![endif]-->
3333
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
34+
@if (App::getLocale() == 'fa')
35+
<link href="{{URL::asset('css/fonts/fonts.css')}}" rel="stylesheet">
36+
<link href="{{URL::asset('css/fa-fonts.css')}}" rel="stylesheet">
37+
@endif
3438

3539
<!-- jQuery Version 1.11.0 -->
3640
<script src="{{asset("packages/serverfireteam/panel/js/jquery-1.11.0.js")}}"></script>
@@ -58,9 +62,9 @@
5862
<script src="{{asset("packages/zofe/rapyd/assets/colorpicker/js/bootstrap-colorpicker.min.js")}}"></script>
5963
<!--script src="{{asset("packages/serverfireteam/rapyd-laravel/assets/colorpicker/js/bootstrap-colorpicker.min.js")}}"></script-->
6064

61-
62-
{!! Rapyd::scripts() !!}
63-
65+
66+
{!! Rapyd::scripts() !!}
67+
6468
</body>
6569

6670
</html>

0 commit comments

Comments
 (0)