-
Notifications
You must be signed in to change notification settings - Fork 3
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
3fcacec
commit 3aaf844
Showing
33 changed files
with
404 additions
and
426 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,21 @@ | ||
.navbar{ | ||
background-color: #5e8d83; | ||
} | ||
|
||
.navbar-center-logo { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
.nav-logo { | ||
width: auto; | ||
height: 50px; | ||
max-width: 100%; | ||
} | ||
|
||
@media (max-width: 768px) { | ||
.nav-logo { | ||
height: 40px; | ||
} | ||
} |
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 |
---|---|---|
@@ -1,8 +1,39 @@ | ||
<div class="container-fluid sticky-top bg-success"> | ||
<h1 class="text-center mb-0">Tutor.AI</h1> | ||
</div> | ||
<nav class="navbar navbar-expand-lg "> | ||
<div class="container-fluid"> | ||
<div class="navbar-center-logo mx-auto"> | ||
<img src="/assets/img/TutorAI.png" alt="logo" class="nav-logo"> | ||
</div> | ||
<a class=" m-2 navbar-brand" routerLink="/">Tutor.AI</a> | ||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" | ||
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> | ||
<span class="navbar-toggler-icon"></span> | ||
</button> | ||
<div class="collapse navbar-collapse" id="navbarSupportedContent"> | ||
<ul class="navbar-nav me-auto mb-2 mb-lg-0"> | ||
<li class="nav-item"> | ||
<a class="nav-link active" aria-current="page" role="button" routerLink="/access-account">Sign Up</a> | ||
</li> | ||
<li class="nav-item dropdown"> | ||
<a class="nav-link dropdown-toggle" routerLink="/" id="navbarDropdown" role="button" data-bs-toggle="dropdown" | ||
aria-expanded="false"> | ||
courses | ||
</a> | ||
<ul class="dropdown-menu" aria-labelledby="navbarDropdown"> | ||
<li><a class="dropdown-item" routerLink="/">Action</a></li> | ||
<li><a class="dropdown-item" routerLink="/">Another action</a></li> | ||
<li> | ||
<hr class="dropdown-divider"> | ||
</li> | ||
<li><a class="dropdown-item" routerLink="/">Something else here</a></li> | ||
</ul> | ||
</li> | ||
<li><a href="#" (click)="logout()" class="nav-link px-2 link-dark">logout</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
</nav> | ||
<router-outlet></router-outlet> | ||
<app-navbar *ngIf ="showHeaderFooter"></app-navbar> | ||
<app-intro *ngIf="showHeaderFooter"></app-intro> | ||
<app-footer ></app-footer> | ||
|
||
|
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
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
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
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 |
---|---|---|
@@ -1,8 +1,10 @@ | ||
|
||
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap'); | ||
|
||
.about-wrapper{ | ||
padding:20px; | ||
/* padding-left:5%; */ | ||
} | ||
button{ | ||
font-size: 25px; | ||
font-family: Georgia, 'Times New Roman', Times, serif; | ||
font-family: "Roboto" serif; | ||
} |
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
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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
/* img{ | ||
width: 440px; | ||
height: 400px ; | ||
display:block; | ||
float: right; | ||
padding-top:20%; | ||
} */ | ||
h3{ | ||
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap'); | ||
|
||
h1{ | ||
padding-top:5%; | ||
/* padding-left:5%; */ | ||
color: #4c7273; | ||
} | ||
p{ | ||
font-size: larger; | ||
font-family:Georgia, 'Times New Roman', Times, serif; | ||
color:rgb(83, 83, 146); | ||
} | ||
font-size: x-large; | ||
font-family:"Roboto" serif; | ||
} | ||
|
||
img { | ||
border: 2px dashed #4c7273; | ||
border-radius: 10%; | ||
width:550px; | ||
} |
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
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 |
---|---|---|
@@ -1,15 +1,20 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap'); | ||
|
||
h3{ | ||
font-size: 34px; | ||
color:blue; | ||
text-decoration: underline; | ||
font-family:Georgia, 'Times New Roman', Times, serif; | ||
color:#4c7273; | ||
font-family:"Roboto", serif; | ||
font-weight: bold; | ||
padding-top:2%; | ||
/* padding-left:5%; */ | ||
} | ||
|
||
p{ | ||
font-size:xx-large; | ||
font-family: Georgia, 'Times New Roman', Times, serif; | ||
font-family: "Roboto", serif; | ||
font-weight: 500; | ||
/* padding-left:2%; */ | ||
} | ||
|
||
img{ | ||
border-radius: 10%; | ||
border:4px dotted #4c7273; | ||
} |
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
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 |
---|---|---|
@@ -1,20 +1,21 @@ | ||
/* img{ | ||
width: 440px; | ||
height: 400px ; | ||
display:block; | ||
float: right; | ||
padding-top:20%; | ||
} */ | ||
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap'); | ||
|
||
h1{ | ||
color: #4c7273; | ||
} | ||
h2{ | ||
font-size: xx-large; | ||
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; | ||
font-style: italic; | ||
font-family: "Roboto", serif; | ||
} | ||
h3{ | ||
padding-top:15%; | ||
} | ||
p{ | ||
font-size: xx-large; | ||
font-family:Georgia, 'Times New Roman', Times, serif; | ||
color:rgb(83, 83, 146); | ||
font-size: x-large; | ||
font-family: "Roboto", serif; | ||
color:#4c7273; | ||
} | ||
|
||
img{ | ||
border: 2px dashed #4c7273; | ||
border-radius: 10%; | ||
} |
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
Empty file.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.