summaryrefslogtreecommitdiff
path: root/public/css/foot.css
diff options
context:
space:
mode:
Diffstat (limited to 'public/css/foot.css')
-rw-r--r--public/css/foot.css120
1 files changed, 120 insertions, 0 deletions
diff --git a/public/css/foot.css b/public/css/foot.css
new file mode 100644
index 0000000..ef3291d
--- /dev/null
+++ b/public/css/foot.css
@@ -0,0 +1,120 @@
1/*-- pied de page --*/
2footer
3{
4 /*background-color: #279dc177;*/
5 /*background-color: #13aff077;*/
6 background-color: #B7E9FE;
7 /*width: 1200px;*/
8 margin: auto;
9
10}
11footer > div
12{
13 margin: auto;
14 max-width: 1200px;
15 display: flex;
16 justify-content: space-around;
17}
18.contact a
19{
20 color: unset;
21 border-bottom: 3px #13aff000 solid; /* bordure invisible */
22}
23.contact a:hover
24{
25 /*background-color: #fadb11;*/
26 text-decoration: none;
27 padding: 0 2px;
28 /*background-color: #13aff0ff;
29 border-bottom: 3px #fadb11 solid;*/
30 background-color: #ffff00;
31 /*border-bottom: 2px #00a8f3 solid;*/
32 border-bottom: 2px #ff1d04 solid;
33}
34
35
36/*-- fil d'ariane --*/
37.breadcrumb
38{
39 max-width: 45%;
40 /*margin-right: 10px;*/
41 margin: 16px 0; /* = p */
42 list-style: none; /* retirer les puces */
43 font-size: small;
44 text-align: right;
45 font-weight: bold;
46}
47.breadcrumb img
48{
49 width: 12px;
50 vertical-align: middle;
51}
52.breadcrumb a img, .breadcrumb a span
53{
54 border-bottom: 2px #13aff000 solid;
55}
56.breadcrumb a img:hover, .breadcrumb a span:hover
57{
58 /*background-color: #13aff0;
59 border-bottom: 3px #fadb11 solid;*/
60 background-color: #ffff00;
61 /*border-bottom: 2px #00a8f3 solid;*/
62 border-bottom: 2px #ff1d04 solid;
63}
64/*.breadcrumb *:not(:last-child)::after
65{
66 content: "→";
67 display: block;
68 margin: 0 3px;
69}*/
70.breadcrumb a
71{
72 color: unset; /* ne plus hériter */
73 text-decoration: none;
74}
75
76/* zone admin */
77.logged_out
78{
79 /*display: none;*/
80 justify-content: start;
81}
82.logged_out a
83{
84 color: black;
85 text-decoration: none;
86}
87.empty_admin_zone
88{
89 height: 32px;
90}
91.logged_in
92{
93 height: 32px;
94 width: 1200px;
95 margin: auto;
96 background-color: #ffff00;
97 position: fixed;
98 bottom: 0px;
99}
100.logged_in > p
101{
102 margin: 5px 0;
103 display: flex;
104 justify-content: space-around;
105}
106.logged_in button
107{
108 margin-left: 5px;
109 color: #ff1d04;
110 font-size: medium;
111 border: lightgrey 2px outset;
112 border-radius: 4px;
113 background-color: white;
114}
115.logged_in button:hover
116{
117 cursor: pointer; /* curseur qui touche du doigt */
118 background-color: #ffff00;
119 border-radius: 4px;
120} \ No newline at end of file