Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions Tinder-for-Dogs/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ h3{
font-size: medium;
color: rgba(0, 0, 0, 0.733);
}
/* #name:hover{
color: #e4c40d;
} */
#title{
background-color: #ff4c68;
color: #fff;
Expand Down Expand Up @@ -55,6 +58,12 @@ h3{
font-weight: bold;
}

.navbar-brand:hover{
background-color:rgba(0, 0, 0, 0.733);
border: 10px solid aqua;
}


.nav-item{
padding: 0 15px;
}
Expand Down Expand Up @@ -100,6 +109,11 @@ right: 1%;
background-color: #ef8172;
color: #fff;
}
#testimonials:hover{
text-align: center;
background-color:black;
color:rgb(102, 235, 14);
}

.carousel-item{

Expand Down
Binary file added Tinder-for-Dogs/images/jacky.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 7 additions & 2 deletions Tinder-for-Dogs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -119,18 +119,23 @@ <h3>Guaranteed to work.</h3>

<div id="testimonial-carousel" class="carousel slide" data-ride="false" data-interval="5000">
<div class="carousel-inner">

<div class="carousel-item active" >
<h2>I no longer have to sniff other dogs for love. I've found the hottest Corgi on TinDog. Woof.</h2>
<img class="testimonial-image"src="images/dog-img.jpg" alt="dog-profile">
<em>Pebbles, New York</em>
</div>

<div class="carousel-item" >

<h2 class="testimonial-text">My dog used to be so lonely, but with TinDog's help, they've found the love of their life. I think.</h2>
<img class="testimonial-image" src="images/lady-img.jpg" alt="lady-profile">
<em>Beverly, Illinois</em>
</div>

<div class="carousel-item" >
<h2 class="testimonial-text">A Dog is the only thing on earth that loves you more than he loves himself.</h2>
<img class="testimonial-image" src="images/jacky.jpg" alt="lady-profile">
<em>Jacky, Paris</em>
</div>
</div>
<a class="carousel-control-prev" href="#testimonial-carousel" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
Expand Down