-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
61359a0
commit 9f9401a
Showing
6 changed files
with
149 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap'); | ||
|
||
*{ | ||
box-sizing: border-box; | ||
} | ||
body{ | ||
background-color: #fef9f2; | ||
font-family: 'Montserrat', sans-serif; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
height: 100vh; | ||
overflow: hidden; | ||
margin: 0; | ||
} | ||
.panel-container{ | ||
background-color: #fff; | ||
box-shadow: 0 0 10px rgba(0,0,0,0.3); | ||
border-radius: 4px; | ||
font-size: 90%; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
padding: 30px; | ||
max-width: 400px; | ||
text-align: center; | ||
} | ||
.panel-container strong { | ||
line-height: 20px; | ||
} | ||
.ratings-container{ | ||
display: flex; | ||
margin: 20px 0; | ||
} | ||
.rating{ | ||
flex: 1; | ||
cursor: pointer; | ||
padding: 20px; | ||
margin: 10px 5px; | ||
} | ||
|
||
.rating:hover, .rating.active{ | ||
border-radius: 4px; | ||
box-shadow: 0 0 10px rgba(0,0,0,0.1); | ||
} | ||
.rating img{ | ||
width: 45px; | ||
} | ||
.rating small{ | ||
color: #555; | ||
display: inline-block; | ||
margin: 10px 0 0; | ||
} | ||
.rating:hover small , | ||
.rating.active small { | ||
color: #111; | ||
} | ||
|
||
.btn { | ||
background-color: #302d2b; | ||
color: #fff; | ||
border: 0; | ||
border-radius: 4px; | ||
padding: 12px 30px; | ||
cursor: pointer; | ||
} | ||
.btn:focus{ | ||
outline: 0; | ||
} | ||
.btn:active{ | ||
transform: scale(0.98); | ||
} | ||
|
||
|
||
.fa-heart{ | ||
color: red; | ||
font-size: 30px; | ||
margin-bottom: 10px; | ||
|
||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"> | ||
<link rel="stylesheet" href="css/style.css"> | ||
<title>Feedback UI Design</title> | ||
</head> | ||
|
||
<body> | ||
<div id="panel" class="panel-container"> | ||
<strong>How satisfied are you with our <br> customer support performance?</strong> | ||
<div class="ratings-container"> | ||
<div class="rating"> | ||
<img src="/imoji/sad.png" /> | ||
<small>Unhappy</small> | ||
</div> | ||
<div class="rating"> | ||
<img src="/imoji/neutral.png" /> | ||
<small>Neutral</small> | ||
</div> | ||
<div class="rating active"> | ||
<img src="/imoji/cool.png" /> | ||
<small>Satisfied</small> | ||
</div> | ||
</div> | ||
<button class="btn" id="send">Send Review</button> | ||
</div> | ||
|
||
|
||
|
||
<script src="js/script.js"></script> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
const ratings = document.querySelectorAll('.rating') | ||
const ratingsContainer = document.querySelector('.ratings-container') | ||
const sendBtn = document.querySelector('#send') | ||
const panel = document.querySelector('#panel') | ||
|
||
let selectedRating = 'satisfied' | ||
|
||
|
||
ratingsContainer.addEventListener('click', (e) => { | ||
if (e.target.parentNode.classList.contains('rating')) { | ||
removeActive() | ||
e.target.parentNode.classList.add('active') | ||
selectedRating = e.target.nextElementSibling.innerHTML | ||
|
||
} | ||
}) | ||
sendBtn.addEventListener('click', (e) => { | ||
panel.innerHTML = ` | ||
<i class="fas fa-heart"></i> | ||
<strong>Thank You!</strong> | ||
<br> | ||
<strong>Feedback: ${selectedRating}</strong> | ||
<p>We'll use your feedback to improve our customer support</p> | ||
` | ||
}) | ||
function removeActive() { | ||
for (let i = 0; i < ratings.length; i++) { | ||
ratings[i].classList.remove('active') | ||
} | ||
} |