style.scss
2.71 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
@charset "UTF-8";
// Importation des Mixins de Materialize
@import "../lib/Materialize/sass/components/mixins";
@import "../lib/Materialize/sass/components/color";
// Définition de la couleur principale de Materialize
$primary-color: color("red", "base") !default;
$primary-color-light: lighten($primary-color, 15%) !default;
$primary-color-dark: darken($primary-color, 15%) !default;
$secondary-color: color("indigo", "lighten-1") !default;
$success-color: color("green", "base") !default;
$error-color: color("pink", "base") !default;
$link-color: color("blue", "darken-1") !default;
// Couleur des onglets : texte clair sur fond coloré
$tabs-underline-color: $secondary-color !default;
$tabs-text-color: #fff !default;
$tabs-bg-color: $primary-color !default;
// Import du reste de Materialize
@import "../lib/Materialize/sass/materialize.scss";
// Import des icônes Material Design
@import "../lib/material-design-icons/iconfont/material-icons.css";
// Permet le footer de se mettre toujours en bas
body {
overflow-y: scroll; // Toujours afficher la barre de défilment pour éviter les sautements
display: flex;
min-height: 100vh;
flex-direction: column;
}
#main {
flex: 1 0 auto;
margin-top: 100px;
}
footer.page-footer {
margin-top: 0;
padding-top: 0;
}
// Adaptation de la nav aux onglets
nav {
height: initial;
min-height: $navbar-height;
}
// Affichage correct des icônes dans le header
nav i.material-icons {
display: inline;
font-size: 1rem;
}
// Simplification du HTML
nav>div {
@extend .nav-wrapper;
@extend .container;
>div {
@extend .row;
margin-bottom: 0px;
}
}
.modal-footer {
>a, >button {
@extend .waves-effect;
@extend .btn-flat;
}
}
// Stylisation de tous les boutons
button {
@extend .btn-large;
@extend .waves-effect;
@extend .waves-light;
}
button[disabled] {
@extend .disabled;
}
.fixed-action-btn {
bottom: 75px;
right: 50px;
>button {
@extend .btn-floating;
@extend .btn-large;
@extend .indigo;
}
}
// Simplification des formulaires
form {
@extend .row;
>.input-field {
@extend .col;
@extend .s12;
}
}
// Personalisé
#grilleBieres {
>div {
@extend .row;
>div {
@extend .col;
@extend .s2;
>button {
width: 90%;
padding: 25px;
height: 150px;
font-size: 3em;
}
}
}
}
.collapsible-body {
padding: 20px;
p {
padding: inherit;
}
}
// On met les toasts en bas
#toast-container {
top: inherit;
bottom: 10%;
a {
text-transform: uppercase;
}
}