-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
executable file
·207 lines (176 loc) · 5.34 KB
/
footer.php
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
<script src="https://unpkg.com/[email protected]/dist/ionicons.js"></script>
<footer>
<div class="colonnes_footer">
<div class="left_side_footer">
<div class="le_propos">
<h6>A PROPOS</h6>
<p class="le_texte">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Aliquam veritatis rem ipsam doloremque architecto animi
a nisi nulla facere pariatur, maiores, ipsa maxime, molestias
doloribus amet ab repudiandae quo eveniet. Adipisci, necessitatibus
quisquam voluptates autem ab possimus aperiam voluptate a ipsum quasi,
harum, molestias sint laborum ullam quaerat iusto sit.
</p>
<img src="/RESSOURCES/css/img/logo-placeholder.svg" alt="Logo">
</div>
</div>
<div class="right_side_footer">
<div class="liens_utiles">
<h6>LIENS UTILES</h6>
<a href="/profil_enseignant.php">Mon Compte</a>
<a href="/search.php">Recherche</a>
<a href="/index.php">Page d'acceuil</a>
<a href="/parametres.php">Paramétres</a>
</div>
<div class="aides">
<h6>aide</h6>
<a href="#">Support Technique</a>
<a href="#">Droits</a>
<a href="#">F.A.Q</a>
</div>
<div class="les_reseaux">
<h6>suivez-nous</h6>
<a href="https://facebook.com">
<ion-icon class="logo_facebook" name="logo-facebook"></ion-icon>
</a>
<a href="https://instagram.com">
<ion-icon class="logo_instagram" name="logo-instagram"></ion-icon>
</a><br>
<a href="https://youtube.com">
<ion-icon class="logo_youtube" name="logo-youtube"></ion-icon>
</a>
<a href="https://twitter.com">
<ion-icon class="logo_twitter" name="logo-twitter"></ion-icon>
</a>
</div>
</div>
</div>
<div class="conditions">
<a href="#">Politique & Confidentialité </a><SPAN> | </SPAN>
<a href="#">Termes & Conditions </a><SPAN> | </SPAN>
<a href="#">Cookies </a><SPAN> | </SPAN>
<p>2021 Nom du site. Tout les droits reservée</p>
</div>
</footer>
<style>
/*---------------BASIC SETUP--------------*/
*{
padding: 0px;
margin: 0px;
box-sizing: border-box;
outline: none;
}
html,
body{
font-size: 20px;
background-color: #fff;
color: #1f1f1f;
font-family: 'lato','arial',sans-serif;
font-weight: 300;
text-rendering: optimizeLegibility;
overflow-x: hidden;
}
footer {
margin-top: 80px;
padding-bottom: 20px;
background-image: url("/RESSOURCES/css/img/footer-background.png");
background-repeat: no-repeat, repeat;
background-size: cover;
font-size: 15px;
}
.colonnes_footer {
padding: 30px 0;
background-size: cover;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
color: #d5d5d5;
}
.colonnes_footer a {
text-decoration: none;
color: #D5D5D5;
transition: color 0.2s;
}
.colonnes_footer a:hover,
.colonnes_footer a:active {
color: #a0a0a0;
}
.right_side_footer h6 {
font-size: 120%;
font-weight: 100;
text-transform: uppercase;
padding: 0 0 15px 0;
}
.right_side_footer {
display: flex;
flex-direction: row;
}
.right_side_footer a {
padding: 3px 0;
}
.left_side_footer {
width: 35%;
}
.le_propos h6 {
font-size: 110%;
padding: 0 0 20px 0;
}
.le_propos img {
padding: 10px 0 0 0;
width: 50px;
height: auto;
}
.aides,
.liens_utiles {
display: flex;
flex-direction: column;
padding: 0 20px 0 20px;
}
.colonnes_footer a:hover,
.colonnes_footer a:active,
.conditions a:hover,
.conditions a:active {
color: gray;
}
.conditions {
display: flex;
flex-direction: row;
justify-content: center;
}
.conditions a {
color: #d5d5d5;
text-decoration: none;
transition: color 0.5s;
}
.conditions span {
font-size: 120%;
color: grey;
}
.conditions p {
color: black;
}
/*----------------------------------------------*/
/*--------------footer icons ---------------------*/
.logo_facebook,
.logo_instagram,
.logo_twitter,
.logo_youtube {
padding: 8px 5px 0 0;
font-size: 250%;
transition: color 0.2s;
}
.logo_facebook:hover {
color: #4267B2
}
.logo_instagram:hover {
color: rgb(150, 46, 106);
}
.logo_youtube:hover {
color: #FF0000;
}
.logo_twitter:hover {
color: #1DA1F2;
}
</style>