blob: ed63bb9ab5104e061a6dd51cb0c1b8999ecf087e (
plain)
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
|
$PORT: '9090';
$PROD_MACHINE: '10.147.92.78';
@font-face {
font-family: omnes-light;
src: url('http://localhost:#{$PORT}/omnes-att-light.ttf'),
url('http://#{$PROD_MACHINE}:#{$PORT}/omnes-att-light.ttf');
}
@font-face {
font-family: omnes-regular;
src: url('http://localhost:#{$PORT}/omnes-att-regular.ttf'),
url('http://#{$PROD_MACHINE}:#{$PORT}/omnes-att-regular.ttf');
}
@font-face {
font-family: omnes-medium;
src: url('http://localhost:#{$PORT}/omnes-att-medium.ttf'),
url('http://#{$PROD_MACHINE}:#{$PORT}/omnes-att-medium.ttf');
}
@font-face {
font-family: omnes-bold;
src: url('http://localhost:#{$PORT}/omnes-att-bold.otf'),
url('http://#{$PROD_MACHINE}:#{$PORT}/omnes-att-bold.otf');
}
body {
@import '../resources/scss/bootstrap.scss';
font-family: omnes-medium,sans-serif;
font-size: 14px;
}
|