-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<!DOCTYPE html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Calendly</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
|
||
<!-- Google Fonts --> | ||
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap" rel="stylesheet"> | ||
|
||
<!-- Styles --> | ||
<link rel="stylesheet" href="css/styles.css"> | ||
<link rel="stylesheet" href="css/confirm.css"> | ||
|
||
</head> | ||
|
||
<body> | ||
|
||
<div class="container"> | ||
<section class="body-section"> | ||
<h3>Confirmed!</h3> | ||
<p id="scheduler">You are scheduled with ACME Sales.</p> | ||
</section> | ||
<section class="description-section"> | ||
<hgroup> | ||
<h3 id="event">Pricing Review</h3> | ||
<div class="icon-text-div"> | ||
<img src="icons/clock.svg" alt="clock-icon"> | ||
<h4 id="duration">15 min</h4> | ||
</div><br> | ||
<div class="icon-text-div"> | ||
<img src="icons/calendar (1).svg" alt="calendar-icon"> | ||
<h4 id="event-time-stamp">9:00am - 9:15am, Monday, July 13, 2020</h4> | ||
</div> | ||
</hgroup> | ||
</section> | ||
</div> | ||
|
||
<script src="script/confirm.js"></script> | ||
|
||
</body> | ||
</html> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
.container { | ||
display: block; | ||
height: 85vh; | ||
text-align: center; | ||
width: 645px; | ||
margin: 50px auto; | ||
overflow: auto; | ||
} | ||
|
||
.body-section, .description-section { | ||
margin: 50px 100px; | ||
} | ||
|
||
.description-section { | ||
border-top: 1px solid ghostwhite; | ||
border-bottom: 1px solid ghostwhite; | ||
padding-top: 25px; | ||
text-align: initial; | ||
} | ||
|
||
@media (max-width: 1250px) { | ||
.icon-text-div { | ||
justify-content: left; | ||
} | ||
} | ||
|
||
@media (max-width: 645px) { | ||
.container { | ||
width: auto; | ||
} | ||
|
||
.description-section { | ||
margin: 30px 5%; | ||
} | ||
|
||
.body-section { | ||
margin: 30px 2%; | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -107,8 +107,13 @@ | |
width: 100%; | ||
margin-left: 5px; | ||
|
||
&:hover { | ||
opacity: 0.5; | ||
} | ||
|
||
&:focus { | ||
outline: 0; | ||
opacity: 0.5; | ||
} | ||
} | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
var event = JSON.parse(sessionStorage.getItem("eventObj")); | ||
|
||
document.getElementById("event").textContent = event.name; | ||
document.getElementById("scheduler").textContent = "You are scheduled with " + event.organizer; | ||
document.getElementById("duration").textContent = event.duration + " min"; | ||
document.getElementById("event-time-stamp").textContent = event.time + " " + event.date; |