Projet

Général

Profil

0001-fontenay-sous-bois-2017-update-headers-styles-17977.patch

Serghei Mihai (congés, retour 15/05), 17 août 2017 19:56

Télécharger (89,9 ko)

Voir les différences:

Subject: [PATCH] fontenay-sous-bois-2017: update headers styles (#17977)

 README                                      |   9 +++++++++
 static/fontenay-sous-bois-2017/_custom.scss |  25 +++++++++++++++++++++++++
 static/fontenay-sous-bois-2017/style.scss   |   1 +
 static/fonts/YanoneKaffeesatz-Bold.otf      | Bin 0 -> 70404 bytes
 static/fonts/YanoneKaffeesatz-Regular.otf   | Bin 0 -> 67936 bytes
 static/includes/_font-yanonekaffeesatz.scss |  15 +++++++++++++++
 6 files changed, 50 insertions(+)
 create mode 100644 static/fonts/YanoneKaffeesatz-Bold.otf
 create mode 100644 static/fonts/YanoneKaffeesatz-Regular.otf
 create mode 100644 static/includes/_font-yanonekaffeesatz.scss
README
28 28
You should have received a copy of the GNU Affero General Public License along
29 29
with this program.  If not, see <http://www.gnu.org/licenses/>.
30 30

  
31
This program incorporates independent elements, with their own authors and
32
copyright notices:
33

  
34
* Yanone Kaffeesatz font
35
  # https://www.fontsquirrel.com/fonts/yanone-kaffeesatz
36
  #
37
  # Licensed under the SIL Open Font License, Version 1.1.
38
  # https://www.fontsquirrel.com/license/yanone-kaffeesatz
39

  
31 40
~~~~
32 41

  
33 42
Some CSS variant files have their own specific licenses.
static/fontenay-sous-bois-2017/_custom.scss
1
h1 {
2
    font-family: YanoneKaffeesatzBold;
3
    font-size: 2em;
4
    color: #454548;
5
}
6

  
7
h2 {
8
    font-size: 1.7em;
9
    color: #4f8cc9;
10
    font-family: YanoneKaffeesatzBold;
11
}
12

  
13
%title {
14
    @extend %title;
15
    font-size: 1.7em;
16
    font-family: YanoneKaffeesatzBold;
17
    color: #4f8cc9;
18
}
19

  
20
h3 {
21
    font-family: YanoneKaffeesatzBold;
22
    color: #343531;
23
    font-size: 1.6em;
24
}
25

  
1 26
#nav-wrapper {
2 27
    border-bottom: 14px solid $primary-color;
3 28
    @media screen and (max-width: $mobile-limit) {
static/fontenay-sous-bois-2017/style.scss
2 2

  
3 3
@import 'vars';
4 4
@import '../includes/publik';
5
@import '../includes/font-yanonekaffeesatz';
5 6
@import 'custom';
static/includes/_font-yanonekaffeesatz.scss
1
@font-face {
2
        font-family: 'YanoneKaffeesatz';
3
        font-style: normal;
4
        font-weight: normal;
5
        src: url(../fonts/YanoneKaffeesatz-Regular.otf);
6
        src: url('../fonts/YanoneKaffeesatz-Regular.otf') format('opentype')
7
}
8

  
9
@font-face {
10
        font-family: 'YanoneKaffeesatzBold';
11
        font-style: normal;
12
        font-weight: bold;
13
        src: url(../fonts/YanoneKaffeesatz-Bold.otf);
14
        src: url('../fonts/YanoneKaffeesatz-Bold.otf') format('opentype')
15
}
0
-