Changeset b09655a
- Timestamp:
- 01/24/25 01:59:41 (3 months ago)
- Branches:
- master
- Children:
- 03d08f3
- Parents:
- 34aa6cc
- Location:
- ReserveNGo-frontend
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
ReserveNGo-frontend/index.html
r34aa6cc rb09655a 7 7 <title>Vite App</title> 8 8 <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous"> 9 <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> 9 10 </head> 10 11 <body> -
ReserveNGo-frontend/src/App.vue
r34aa6cc rb09655a 58 58 main { 59 59 flex: 1; /*istrazi*/ 60 } 61 footer{ 62 background: #8377D1; 60 63 } 61 64 -
ReserveNGo-frontend/src/components/Project/Footer_.vue
r34aa6cc rb09655a 4 4 5 5 <template> 6 <footer> 7 <div class="slogan"> 8 <h3>ReserveNGo</h3> 9 <p>Why not make your life easier?</p> 6 10 7 <div id="container" class="border"> 8 <footer> 9 Lorem ipsum dolor sit amet, consectetur adipisicing elit. Itaque, voluptatibus? 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> 10 19 </footer> 11 </div> 20 12 21 13 22 … … 16 25 <style scoped> 17 26 18 #container{ 19 height: 20vh; 20 background: #8377D1; 27 /*hr{ 28 height: 50px; 29 width: auto; 30 }*/ 31 32 footer{ 33 display: flex; 34 flex-direction: column; 35 justify-content: center; 36 align-items: center; 37 margin: 10px 0; 21 38 } 22 39 23 footer{ 40 .slogan{ 41 font-size: 30px; 42 margin: 20px 0; 43 } 44 .slogan h3{ 45 text-align: center; 46 } 24 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; 25 80 } 26 81
Note:
See TracChangeset
for help on using the changeset viewer.