source: ReserveNGo-frontend/src/components/Project/Footer_.vue@ 17db9d2

Last change on this file since 17db9d2 was 17db9d2, checked in by Aleksandarj03 <138524804+Aleksandarj03@…>, 3 months ago

Added favourite locals placeholder and fixed navbar

  • Property mode set to 100644
File size: 1.2 KB
Line 
1<script setup>
2
3</script>
4
5<template>
6 <footer>
7 <div class="slogan">
8 <h3>ReserveNGo</h3>
9 <p>Why not make your life easier?</p>
10
11 </div>
12
13 <div class="contact">
14 <p>Contact:</p>
15 <a href="#" class="fa fa-facebook"></a>
16 <a href="#" class="fa fa-instagram"></a>
17 <a href="#" class="fa fa-google"></a>
18 </div>
19 </footer>
20
21
22
23</template>
24
25<style scoped>
26
27/*hr{
28 height: 50px;
29 width: auto;
30}*/
31
32footer{
33 display: flex;
34 flex-direction: column;
35 justify-content: center;
36 align-items: center;
37 margin: 10px 0;
38}
39
40.slogan{
41 font-size: 30px;
42 margin: 20px 0;
43}
44.slogan h3{
45 text-align: center;
46}
47
48.contact{
49 margin: 20px 0;
50 display: flex;
51 flex-direction: row;
52 justify-content: space-between;
53}
54.contact p{
55 margin: auto;
56 font-size: 20px;
57}
58
59.fa {
60 padding: 20px;
61 margin-left: 15px;
62 font-size: 20px;
63 width: 20px;
64 text-align: center;
65 text-decoration: none;
66 border-radius: 50%;
67 box-sizing: content-box;
68}
69.fa-facebook {
70 background: #3B5998;
71 color: white;
72}
73.fa-instagram {
74 background: #125688;
75 color: white;
76}
77.fa-google {
78 background: #dd4b39;
79 color: white;
80}
81
82</style>
Note: See TracBrowser for help on using the repository browser.