source:
ReserveNGo-frontend/src/components/Project/Footer_.vue
Last change on this file was 17db9d2, checked in by , 3 months ago | |
---|---|
|
|
File size: 1.2 KB |
Rev | Line | |
---|---|---|
[590f667] | 1 | <script setup> |
2 | ||
3 | </script> | |
4 | ||
5 | <template> | |
[f9ef3e8] | 6 | <footer> |
[b09655a] | 7 | <div class="slogan"> |
8 | <h3>ReserveNGo</h3> | |
9 | <p>Why not make your life easier?</p> | |
10 | ||
11 | </div> | |
[17db9d2] | 12 | |
[b09655a] | 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> | |
[f9ef3e8] | 19 | </footer> |
[b09655a] | 20 | |
[590f667] | 21 | |
22 | ||
23 | </template> | |
24 | ||
25 | <style scoped> | |
26 | ||
[b09655a] | 27 | /*hr{ |
28 | height: 50px; | |
29 | width: auto; | |
30 | }*/ | |
[f9ef3e8] | 31 | |
32 | footer{ | |
[b09655a] | 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 | } | |
[f9ef3e8] | 58 | |
[b09655a] | 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; | |
[590f667] | 80 | } |
81 | ||
82 | </style> |
Note:
See TracBrowser
for help on using the repository browser.