vault backup: 2025-06-23 00:01:29

This commit is contained in:
2025-06-23 00:01:29 +03:30
parent a7f5370340
commit 8e7ad789fb
1347 changed files with 0 additions and 229 deletions
@@ -0,0 +1,376 @@
# Part 0: Roadmap of this Session
### Views in MVC
- [x] Creating and Organizing Views: Using view models and best practices for organizing views.
- [x] _Layout.cshtml: Creating reusable layouts for consistent page structure.
- [x] Bootstrap Integration: Introduction to Bootstrap and using its grid system, forms, and navigation.
- [x] Razor View Engine: Using Razor for conditional content, loops, and strongly typed views.
- [ ] HTML Helpers and Tag Helpers: Leveraging helpers to generate forms, links, and other elements
# Part 1: Introduction to Views
In the Model-View-Controller (MVC) pattern, the _view_ handles the app's data presentation and user interaction. A view is an HTML template with embedded [Razor markup](https://learn.microsoft.com/en-us/aspnet/core/mvc/views/razor?view=aspnetcore-9.0). Razor markup is code that interacts with HTML markup to produce a webpage that's sent to the client.
In ASP.NET Core MVC, views are `.cshtml` files that use the [C# programming language](https://learn.microsoft.com/en-us/dotnet/csharp/) in Razor markup. Usually, view files are grouped into folders named for each of the app's [controllers](https://learn.microsoft.com/en-us/aspnet/core/mvc/controllers/actions?view=aspnetcore-9.0). The folders are stored in a `Views` folder at the root of the app:
![Views folder in Solution Explorer of Visual Studio is open with the Home folder open to show About.cshtml, Contact.cshtml, and Index.cshtml files](https://learn.microsoft.com/en-us/aspnet/core/mvc/views/overview/_static/views_solution_explorer.png?view=aspnetcore-9.0)
The `Home` controller is represented by a `Home` folder inside the `Views` folder. The `Home` folder contains the views for the `About`, `Contact`, and `Index` (homepage) webpages. When a user requests one of these three webpages, controller actions in the `Home` controller determine which of the three views is used to build and return a webpage to the user.
## Layouts
Use [layouts](https://learn.microsoft.com/en-us/aspnet/core/mvc/views/layout?view=aspnetcore-9.0) to provide consistent webpage sections and reduce code repetition. Layouts often contain the header, navigation and menu elements, and the footer. The header and footer usually contain boilerplate markup for many metadata elements and links to script and style assets. Layouts help you avoid this boilerplate markup in your views.
## Partial Views
[Partial views](https://learn.microsoft.com/en-us/aspnet/core/mvc/views/partial?view=aspnetcore-9.0) reduce code duplication by managing reusable parts of views. For example, a partial view is useful for an author biography on a blog website that appears in several views. An author biography is ordinary view content and doesn't require code to execute in order to produce the content for the webpage. Author biography content is available to the view by model binding alone, so using a partial view for this type of content is ideal.
### When to use partial views
Partial views are an effective way to:
- Break up large markup files into smaller components.
In a large, complex markup file composed of several logical pieces, there's an advantage to working with each piece isolated into a partial view. The code in the markup file is manageable because the markup only contains the overall page structure and references to partial views.
- Reduce the duplication of common markup content across markup files.
When the same markup elements are used across markup files, a partial view removes the duplication of markup content into one partial view file. When the markup is changed in the partial view, it updates the rendered output of the markup files that use the partial view.
Partial views shouldn't be used to maintain common layout elements. Common layout elements should be specified in [_Layout.cshtml](https://learn.microsoft.com/en-us/aspnet/core/mvc/views/layout?view=aspnetcore-9.0)  files.
Don't use a partial view where complex rendering logic or code execution is required to render the markup. Instead of a partial view, use a [view component](https://learn.microsoft.com/en-us/aspnet/core/mvc/views/view-components?view=aspnetcore-9.0).
### Partial Tag Helper
The [Partial Tag Helper](https://learn.microsoft.com/en-us/aspnet/core/mvc/views/tag-helpers/built-in/partial-tag-helper?view=aspnetcore-9.0) requires ASP.NET Core 2.1 or later.
The Partial Tag Helper renders content asynchronously and uses an HTML-like syntax:
```cs
<partial name="_PartialName" />
```
```cs
<partial name="~/Views/Folder/_PartialName.cshtml" />
<partial name="/Views/Folder/_PartialName.cshtml" />
```
# Part 2: Razor Syntax
https://learn.microsoft.com/en-us/aspnet/core/mvc/views/razor?view=aspnetcore-9.0
## Razor syntax
Razor supports C# and uses the `@` symbol to transition from HTML to C#. Razor evaluates C# expressions and renders them in the HTML output.
When an `@` symbol is followed by a [Razor reserved keyword](https://learn.microsoft.com/en-us/aspnet/core/mvc/views/razor?view=aspnetcore-9.0#razor-reserved-keywords), it transitions into Razor-specific markup. Otherwise, it transitions into plain HTML.
To escape an `@` symbol in Razor markup, use a second `@` symbol.
## Implicit Razor expressions
Implicit Razor expressions start with `@` followed by C# code:
```html
<p>@DateTime.Now</p>
<p>@DateTime.IsLeapYear(2016)</p>
```
## Explicit Razor expressions
Explicit Razor expressions consist of an `@` symbol with balanced parenthesis. To render last week's time, the following Razor markup is used:
```html
<p>Last week this time: @(DateTime.Now - TimeSpan.FromDays(7))</p>
```
## Razor code blocks
Razor code blocks start with `@` and are enclosed by `{}`. Unlike expressions, C# code inside code blocks isn't rendered. Code blocks and expressions in a view share the same scope and are defined in order:
```cs
@{
var quote = "The future depends on what you do today. - Mahatma Gandhi";
}
<p>@quote</p>
@{
quote = "Hate cannot drive out hate, only love can do that. - Martin Luther King, Jr.";
}
<p>@quote</p>
```
The code renders the following HTML:
```html
<p>The future depends on what you do today. - Mahatma Gandhi</p>
<p>Hate cannot drive out hate, only love can do that. - Martin Luther King, Jr.</p>
```
In code blocks, declare [local functions](https://learn.microsoft.com/en-us/dotnet/csharp/programming-guide/classes-and-structs/local-functions) with markup to serve as templating methods:
```cs
@{
void RenderName(string name)
{
<p>Name: <strong>@name</strong></p>
}
RenderName("Mahatma Gandhi");
RenderName("Martin Luther King, Jr.");
}
```
The code renders the following HTML:
```html
<p>Name: <strong>Mahatma Gandhi</strong></p>
<p>Name: <strong>Martin Luther King, Jr.</strong></p>
```
## Control structures
Control structures are an extension of code blocks. All aspects of code blocks (transitioning to markup, inline C#) also apply to the following structures:
### Conditionals `@if, else if, else, and @switch`
`@if` controls when code runs:
```cs
@if (value % 2 == 0)
{
<p>The value was even.</p>
}
```
`else` and `else if` don't require the `@` symbol:
```cs
@if (value % 2 == 0)
{
<p>The value was even.</p>
}
else if (value >= 1337)
{
<p>The value is large.</p>
}
else
{
<p>The value is odd and small.</p>
}
```
The following markup shows how to use a switch statement:
```cs
@switch (value)
{
case 1:
<p>The value is 1!</p>
break;
case 1337:
<p>Your number is 1337!</p>
break;
default:
<p>Your number wasn't 1 or 1337.</p>
break;
}
```
### Looping `@for, @foreach, @while, and @do while`
`@for`
```cs
@for (var i = 0; i < people.Length; i++)
{
var person = people[i];
<p>Name: @person.Name</p>
<p>Age: @person.Age</p>
}
```
`@foreach`
```cs
@foreach (var person in people)
{
<p>Name: @person.Name</p>
<p>Age: @person.Age</p>
}
```
`@while`
```cs
@{ var i = 0; }
@while (i < people.Length)
{
var person = people[i];
<p>Name: @person.Name</p>
<p>Age: @person.Age</p>
i++;
}
```
# Part 3: Bootstrap and Frontend development
## What is Bootstrap?
- Bootstrap is a free front-end framework for faster and easier web development
- Bootstrap includes HTML and CSS based design templates for typography, forms, buttons, tables, navigation, modals, image carousels and many other, as well as optional JavaScript plugins
- Bootstrap also gives you the ability to easily create responsive designs
https://www.w3schools.com/bootstrap/bootstrap_ver.asp
https://getbootstrap.com/docs/4.0/components/buttons/
![[Pasted image 20241121120517.png]]
# Part 4: Tag Helpers and HTML Helpers
### **Tag Helpers and HTML Helpers in ASP.NET Core**
Tag Helpers and HTML Helpers are features of ASP.NET Core MVC used to simplify the creation of dynamic HTML content in Razor views. Both are tools for generating HTML but differ in syntax, approach, and usability.
---
## **1. Tag Helpers**
### **What Are Tag Helpers?**
Tag Helpers are server-side components in ASP.NET Core that help you generate and manipulate HTML elements using a natural and familiar syntax that resembles standard HTML.
#### Key Characteristics:
- Blend seamlessly with standard HTML.
- Use attributes to bind data or add functionality.
- Processed on the server and output pure HTML.
---
### **Examples of Tag Helpers**
1. **Anchor Tag Helper (`<a>`)**
`<a asp-controller="Home" asp-action="About" class="btn btn-primary">Go to About</a>`
- `asp-controller`: Specifies the controller (`Home`).
- `asp-action`: Specifies the action (`About`).
- This generates:
`<a href="/Home/About" class="btn btn-primary">Go to About</a>`
1. **Form Tag Helper**
`<form asp-controller="Account" asp-action="Login" method="post"> <input type="text" name="username" /> <button type="submit">Login</button> </form>`
- Automatically generates the form's `action` attribute based on the controller and action.
3. **Input Tag Helper*
`<input asp-for="UserName" class="form-control" />`
- `asp-for`: Binds the input element to the `UserName` property of the model.
4. **Validation Tag Helpers**
`<span asp-validation-for="Email" class="text-danger"></span>`
- Displays validation messages for the `Email` property.
---
### **How Tag Helpers Work**
- Tag Helpers are identified by their **attributes**, like `asp-controller` or `asp-for`.
- These attributes are processed on the server to generate the appropriate HTML.
#### Configuration:
Tag Helpers are enabled globally in Razor views by default using the `_ViewImports.cshtml` file:
`@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers`
#### Benefits:
- Intuitive and HTML-like syntax.
- Cleaner and more readable Razor views.
- Easier to maintain and debug.
---
## **2. HTML Helpers**
### **What Are HTML Helpers?**
HTML Helpers are server-side C# methods that generate HTML elements dynamically. They are written in Razor syntax (`@Html.*`) and allow you to create UI components programmatically.
#### Key Characteristics:
- Written as C# methods.
- More explicit than Tag Helpers.
- Processed on the server and output HTML.
---
### **Examples of HTML Helpers**
1. **Anchor Links (`Html.ActionLink`)**
`@Html.ActionLink("Go to About", "About", "Home", null, new { @class = "btn btn-primary" })`
- Generates:
html
`<a href="/Home/About" class="btn btn-primary">Go to About</a>`
2. **Forms (`Html.BeginForm`)**
razor
`@using (Html.BeginForm("Login", "Account", FormMethod.Post)) { @Html.TextBoxFor(m => m.UserName, new { @class = "form-control" }) <button type="submit">Login</button> }`
- Generates:
`<form action="/Account/Login" method="post"> <input class="form-control" id="UserName" name="UserName" type="text" value=""> <button type="submit">Login</button> </form>`
3. **Input Fields (`Html.TextBoxFor`)**
`@Html.TextBoxFor(m => m.Email, new { @class = "form-control" })`
- Generates:
`<input class="form-control" id="Email" name="Email" type="text" value="">`
4. **Validation Messages**
`@Html.ValidationMessageFor(m => m.Email, null, new { @class = "text-danger" })`
- Displays validation messages for the `Email` property.
---
### **How HTML Helpers Work**
- They are methods in the `System.Web.Mvc.HtmlHelper` class.
- Use lambda expressions to bind data to model properties.
#### Benefits:
- Provide programmatic control over HTML generation.
- Allow detailed customization using C#.
---
## **Comparison: Tag Helpers vs. HTML Helpers**
| **Feature** | **Tag Helpers** | **HTML Helpers** |
| ----------------- | ------------------------------------ | -------------------------------------- |
| **Syntax** | HTML-like attributes | C# method calls |
| **Readability** | Cleaner and more intuitive | Less readable in complex scenarios |
| **Usage** | Uses attributes like `asp-for` | Uses Razor methods like `Html.TextBox` |
| **Configuration** | Requires `_ViewImports.cshtml` setup | No special configuration required |
| **Flexibility** | Easier to extend and customize | More explicit but less integrated |
| **Examples** | `<input asp-for="Email" />` | `@Html.TextBoxFor(m => m.Email)` |
---
## **Best Practices**
1. Use **Tag Helpers** for modern, clean, and readable Razor views.
2. Use **HTML Helpers** for scenarios requiring complex C# logic or when you prefer programmatic control.
3. Avoid mixing both approaches in the same view for consistency.
@@ -0,0 +1,6 @@
Mock a website and create multiple pages with custom routings.
Use Partial Views to avoid repetition
Use Bootstrap themes and classes to change the style
Use Buttons and Links in your pages
![[photo_2024-11-21_12-09-39.jpg]]
@@ -0,0 +1,38 @@
using Microsoft.AspNetCore.Mvc;
using System.Diagnostics;
using Views.Models;
namespace Views.Controllers
{
public class HomeController : Controller
{
private readonly ILogger<HomeController> _logger;
public HomeController(ILogger<HomeController> logger)
{
_logger = logger;
}
public IActionResult Index()
{
List<string> list = new List<string>();
list.Add("harry_potter");
return View();
}
public IActionResult Privacy()
{
return View();
}
public IActionResult Index2()
{
return View();
}
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
public IActionResult Error()
{
return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
}
}
}
@@ -0,0 +1,12 @@
using Microsoft.AspNetCore.Mvc;
namespace Views.Controllers
{
public class MicroController : Controller
{
public IActionResult Index()
{
return View();
}
}
}
@@ -0,0 +1,9 @@
namespace Views.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}
@@ -0,0 +1,27 @@
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddControllersWithViews();
var app = builder.Build();
// Configure the HTTP request pipeline.
if (!app.Environment.IsDevelopment())
{
app.UseExceptionHandler("/Home/Error");
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
app.UseHsts();
}
app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseRouting();
app.UseAuthorization();
app.MapControllerRoute(
name: "default",
pattern: "{controller=Home}/{action=Index}/{id?}");
app.Run();
@@ -0,0 +1,28 @@
{
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:56094",
"sslPort": 44317
}
},
"profiles": {
"Views": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"applicationUrl": "https://localhost:7142;http://localhost:5023",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
}
@@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
</Project>
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Controller_SelectedScaffolderID>MvcControllerEmptyScaffolder</Controller_SelectedScaffolderID>
<Controller_SelectedScaffolderCategoryPath>root/Common/MVC/Controller</Controller_SelectedScaffolderCategoryPath>
<View_SelectedScaffolderID>RazorViewEmptyScaffolder</View_SelectedScaffolderID>
<View_SelectedScaffolderCategoryPath>root/Common/MVC/View</View_SelectedScaffolderCategoryPath>
</PropertyGroup>
</Project>
@@ -0,0 +1,25 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.7.34202.233
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Views", "Views.csproj", "{6D3914F1-339D-4261-8BA9-C9E5CFC52269}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{6D3914F1-339D-4261-8BA9-C9E5CFC52269}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6D3914F1-339D-4261-8BA9-C9E5CFC52269}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6D3914F1-339D-4261-8BA9-C9E5CFC52269}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6D3914F1-339D-4261-8BA9-C9E5CFC52269}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {988ABAD3-FC15-4FBF-96BD-9B5F8C8D4A8C}
EndGlobalSection
EndGlobal
@@ -0,0 +1,22 @@
@{
ViewData["Title"] = "Home Page";
int a = 10;
}
@if(a < 19)
{
<p>Hi</p>
}
else
{
<p>Bye</p>
}
<div class="text-center">
<h1 class="display-4">Welcome</h1>
<p>Learn about <a href="https://docs.microsoft.com/aspnet/core">building Web apps with ASP.NET Core</a>.</p>
</div>
@@ -0,0 +1,6 @@
@{
ViewData["Title"] = "Privacy Policy";
}
<h1>@ViewData["Title"]</h1>
<p>Use this page to detail your site's privacy policy.</p>
@@ -0,0 +1,416 @@
@{
Layout = null;
}
<!DOCTYPE html>
<html lang="en">
<head>
<!-- basic -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- mobile metas -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="viewport" content="initial-scale=1, maximum-scale=1">
<!-- site metas -->
<title>microo</title>
<meta name="keywords" content="">
<meta name="description" content="">
<meta name="author" content="">
<!-- bootstrap css -->
<link rel="stylesheet" href="/css/CSS/bootstrap.min.css">
<!-- style css -->
<link rel="stylesheet" href="/css/CSS/style.css">
<!-- responsive-->
<link rel="stylesheet" href="/css/CSS/responsive.css">
<!-- awesome fontfamily -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script><![endif]-->
</head>
<!-- body -->
<body class="main-layout">
<!-- loader -->
<div class="loader_bg">
<div class="loader"><img src="/images/loading.gif" alt="" /></div>
</div>
<!-- end loader -->
<div id="mySidepanel" class="sidepanel">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a class="active" href="index.html">Home</a>
<a href="about.html">About</a>
<a href="searvices.html">Searvices</a>
<a href="shop.html">Shop</a>
<a href="contact.html">Contact</a>
</div>
<!-- header -->
<header>
<!-- header inner -->
<div class="head-top">
<div class="container-fluid">
<div class="row d_flex">
<div class="col-sm-3">
<div class="logo">
<a href="index.html"><img src="/images/logo.png" /></a>
</div>
</div>
<div class="col-sm-9">
<ul class="email text_align_right">
<li class="d_none">
<a href="javascript:void(0)">
<i class="fa fa-user" aria-hidden="true"></i>
Login
</a>
</li>
<li> <button class="openbtn" onclick="openNav()"><img src="/images/menu_btn.png"></button></li>
</ul>
</div>
</div>
</div>
</div>
</header>
<!-- end header -->
<!-- start slider section -->
<div id="top_section" class=" banner_main" style="background-image: url('../images/banner2.jpg');">
<div class="container">
<div class="row d_flex">
<div class="col-md-6">
<div class="airmic">
<h1>The Air Mic </h1>
<p>
There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you
</p>
<a class="read_more" href="Javascript:void(0)">Book Now </a>
</div>
</div>
<div class="col-md-6">
<div class="mic_img">
<figure><img src="/images/right_side.png" alt="#" /></figure>
</div>
</div>
</div>
</div>
</div>
<!-- end slider section -->
<!-- services -->
<div class="services">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="titlepage text_align_center">
<h2>Our Services</h2>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="service_img text_align_center">
<i><img src="/images/service1.png" alt="#" /></i>
</div>
<div class="service_text text_align_center">
<h3>Mic line</h3>
<p>There are many variations of passages mmajority have suffered alteration in some form, by injected humour, or</p>
</div>
</div>
<div class="col-md-4">
<div class="service_img text_align_center">
<i><img src="/images/service2.png" alt="#" /></i>
</div>
<div class="service_text text_align_center">
<h3>Mic Stand</h3>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or </p>
</div>
</div>
<div class="col-md-4">
<div class="service_img text_align_center">
<i><img src="/images/service3.png" alt="#" /></i>
</div>
<div class="service_text text_align_center">
<h3>Head mic</h3>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or </p>
</div>
</div>
</div>
</div>
</div>
<!-- end services -->
<!-- about -->
<div id="about" class="about">
<div class="container-fluid">
<div class="row d_flex">
<div class="col-md-6">
<div class="titlepage text_align_left">
<h2>About Us</h2>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscureContrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure</p>
<a class="read_more" href="about.html">Read More</a>
</div>
</div>
<div class="col-md-6">
<div class="about_img">
<figure><img class="img_responsive" src="/images/about_img.jpg" alt="#" /></figure>
</div>
</div>
</div>
</div>
</div>
<!-- end about -->
<!-- our_mics -->
<div class="our_mics">
<div class="container">
<div class="row">
<div class="col-md-10 offset-md-1">
<div class="titlepage text_align_center">
<h2>Our Mics</h2>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-6 margin_bottom40">
<div id="ho_show" class="mics">
<figure><img class="img_responsive" src="/images/mics_img1.jpg" alt="#" /></figure>
<div class="mics_icon">
<a href="javascript:void(0)">
<i class="fa fa-search" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 margin_bottom40">
<div id="ho_show" class="mics">
<figure><img class="img_responsive" src="/images/mics_img2.jpg" alt="#" /></figure>
<div class="mics_icon">
<a href="javascript:void(0)">
<i class="fa fa-search" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 margin_bottom40">
<div id="ho_show" class="mics">
<figure><img class="img_responsive" src="/images/mics_img3.jpg" alt="#" /></figure>
<div class="mics_icon">
<a href="javascript:void(0)">
<i class="fa fa-search" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 margin_bottom40">
<div id="ho_show" class="mics">
<figure><img class="img_responsive" src="/images/mics_img4.jpg" alt="#" /></figure>
<div class="mics_icon">
<a href="javascript:void(0)">
<i class="fa fa-search" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 margin_bottom40">
<div id="ho_show" class="mics">
<figure><img class="img_responsive" src="/images/mics_img5.jpg" alt="#" /></figure>
<div class="mics_icon">
<a href="javascript:void(0)">
<i class="fa fa-search" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 margin_bottom40">
<div id="ho_show" class="mics">
<figure><img class="img_responsive" src="/images/mics_img6.jpg" alt="#" /></figure>
<div class="mics_icon">
<a href="javascript:void(0)">
<i class="fa fa-search" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end our_mics -->
<!-- testimonial -->
<div class="testimonial">
<div class="container">
<div class="row">
<div class="col-md-8 offset-md-2">
<div class="titlepage text_align_center">
<h2>Our Client Says</h2>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from </p>
</div>
</div>
</div>
<div class="row d_flex">
<div class="col-md-10 offset-md-1">
<div id="testimo" class="carousel slide our_testimonial" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#testimo" data-slide-to="0" class="active"></li>
<li data-target="#testimo" data-slide-to="1"></li>
<li data-target="#testimo" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<div class="container">
<div class="carousel-caption posi_in">
<div class="testomoniam_text">
<i class="text_align_left d-block"><img src="/images/icon.png" alt="#" /></i>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure</p>
<i class="text_align_right d-block"><img src="/images/icon_right.png" alt="#" /></i>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="container">
<div class="carousel-caption posi_in">
<div class="testomoniam_text">
<i class="text_align_left d-block"><img src="/images/icon.png" alt="#" /></i>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure</p>
<i class="text_align_right d-block"><img src="/images/icon_right.png" alt="#" /></i>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="container">
<div class="carousel-caption posi_in">
<div class="testomoniam_text">
<i class="text_align_left d-block"><img src="/images/icon.png" alt="#" /></i>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure</p>
<i class="text_align_right d-block"><img src="/images/icon_right.png" alt="#" /></i>
</div>
</div>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#testimo" role="button" data-slide="prev">
<i class="fa fa-angle-left" aria-hidden="true"></i>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#testimo" role="button" data-slide="next">
<i class="fa fa-angle-right" aria-hidden="true"></i>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- end testimonial -->
<!-- contact section -->
<div class="contact left_cross_right">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="titlepage text_align_left">
<h2>Request a call back.</h2>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or raThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or raThere are many variations of passages of Lorem </p>
</div>
</div>
<div class="col-md-12">
<form id="request" class="main_form">
<div class="row">
<div class="col-md-12 ">
<input class="contactus" placeholder="You Name" type="type" name="Name">
</div>
<div class="col-md-6">
<input class="contactus" placeholder="Email" type="type" name="Email">
</div>
<div class="col-md-6">
<input class="contactus" placeholder="Phone Number" type="type" name="Phone Number">
</div>
<div class="col-md-12">
<textarea class="textarea" placeholder="Message" type="Message"></textarea>
</div>
<div class="col-md-12">
<button class="send_btn">Send</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- end contact section -->
<!-- footer -->
<footer>
<div class="footer">
<div class="container">
<div class="row">
<div class="col-md-12">
<a class="logo_footer"><img src="/images/logo.png" alt="#" /></a>
</div>
<div class="col-md-5">
<div class="Informa conta">
<h3>Adderess</h3>
<ul>
<li>
Jobify Inc Canada. 545 Younge St, <br>Suite 11 Toronto, Ontario M4K 6F4
</li>
</ul>
</div>
<div class="Informa helpful">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="shop.html">Shop</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
<div class="col-md-4">
<div class="Informa conta">
<h3>Contact Us</h3>
<ul>
<li>
<a href="Javascript:void(0)">
(+71) 897648934
</a>
</li>
<li>
<a href="Javascript:void(0)">
demo123@gmail.com
</a>
</li>
</ul>
</div>
<ul class="social_icon text_align_center">
<li> <a href="Javascript:void(0)"><i class="fa fa-facebook-f"></i></a></li>
<li> <a href="Javascript:void(0)"><i class="fa fa-twitter"></i></a></li>
<li> <a href="Javascript:void(0)"><i class="fa fa-instagram" aria-hidden="true"></i></a></li>
</ul>
</div>
<div class="col-md-3">
<div class="Informa">
<h3>Newsletter</h3>
<form class="newslatter_form">
<input class="ente" placeholder="Enter your email" type="text" name="Enter your email">
<button class="subs_btn">Subscribe</button>
</form>
</div>
</div>
</div>
</div>
<div class="copyright text_align_center">
<div class="container">
<div class="row">
<div class="col-md-10 offset-md-1">
<p>© 2020 All Rights Reserved. Design by <a href="https://html.design/"> Free Html Template</a></p>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- end footer -->
<!-- Javascript files-->
<script src="/js/JS/jquery.min.js"></script>
<script src="/js/JS/bootstrap.bundle.min.js"></script>
<script src="/js/JS/jquery-3.0.0.min.js"></script>
<script src="/js/JS/custom.js"></script>
</body>
</html>
@@ -0,0 +1,25 @@
@model ErrorViewModel
@{
ViewData["Title"] = "Error";
}
<h1 class="text-danger">Error.</h1>
<h2 class="text-danger">An error occurred while processing your request.</h2>
@if (Model.ShowRequestId)
{
<p>
<strong>Request ID:</strong> <code>@Model.RequestId</code>
</p>
}
<h3>Development Mode</h3>
<p>
Swapping to <strong>Development</strong> environment will display more detailed information about the error that occurred.
</p>
<p>
<strong>The Development environment shouldn't be enabled for deployed applications.</strong>
It can result in displaying sensitive information from exceptions to end users.
For local debugging, enable the <strong>Development</strong> environment by setting the <strong>ASPNETCORE_ENVIRONMENT</strong> environment variable to <strong>Development</strong>
and restarting the app.
</p>
@@ -0,0 +1,15 @@
@{
Layout = null;
}
<!DOCTYPE html>
<html lang="en">
<head>
<title>HHHH</title>
</head>
<body>
Hi
</body>
</html>
@@ -0,0 +1,52 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@ViewData["Title"] - Views</title>
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
<link rel="stylesheet" href="~/Views.styles.css" asp-append-version="true" />
</head>
<body>
<header>
<nav class="navbar navbar-expand-sm navbar-toggleable-sm navbar-light bg-white border-bottom box-shadow mb-3">
<div class="container-fluid">
<a class="navbar-brand" asp-area="" asp-controller="Home" asp-action="Index">Views</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target=".navbar-collapse" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="navbar-collapse collapse d-sm-inline-flex justify-content-between">
<ul class="navbar-nav flex-grow-1">
<li class="nav-item">
<a class="nav-link text-dark" asp-area="" asp-controller="Home" asp-action="Index">Home</a>
</li>
<li class="nav-item">
<a class="nav-link text-dark" asp-area="" asp-controller="Home" asp-action="Privacy">Privacy</a>
</li>
<li class="nav-item">
<a class="nav-link text-dark" asp-area="" asp-controller="Home" asp-action="Index2">Index2</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<div class="container">
<main role="main" class="pb-3">
@RenderBody()
</main>
</div>
<footer class="border-top footer text-muted">
<div class="container">
&copy; 2024 - Views - My Project<a asp-area="" asp-controller="Home" asp-action="Privacy">Privacy</a>
</div>
</footer>
<script src="~/lib/jquery/dist/jquery.min.js"></script>
<script src="~/lib/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<script src="~/js/site.js" asp-append-version="true"></script>
@await RenderSectionAsync("Scripts", required: false)
</body>
</html>
@@ -0,0 +1,48 @@
/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */
a.navbar-brand {
white-space: normal;
text-align: center;
word-break: break-all;
}
a {
color: #0077cc;
}
.btn-primary {
color: #fff;
background-color: #1b6ec2;
border-color: #1861ac;
}
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
color: #fff;
background-color: #1b6ec2;
border-color: #1861ac;
}
.border-top {
border-top: 1px solid #e5e5e5;
}
.border-bottom {
border-bottom: 1px solid #e5e5e5;
}
.box-shadow {
box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}
button.accept-policy {
font-size: 1rem;
line-height: inherit;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
white-space: nowrap;
line-height: 60px;
}
@@ -0,0 +1,2 @@
<script src="~/lib/jquery-validation/dist/jquery.validate.min.js"></script>
<script src="~/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js"></script>
@@ -0,0 +1,3 @@
@using Views
@using Views.Models
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
@@ -0,0 +1,3 @@
@{
Layout = "_Layout";
}
@@ -0,0 +1,8 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}
@@ -0,0 +1,9 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
}
@@ -0,0 +1,23 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v6.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v6.0": {
"Views/1.0.0": {
"runtime": {
"Views.dll": {}
}
}
}
},
"libraries": {
"Views/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}
@@ -0,0 +1,19 @@
{
"runtimeOptions": {
"tfm": "net6.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "6.0.0"
},
{
"name": "Microsoft.AspNetCore.App",
"version": "6.0.0"
}
],
"configProperties": {
"System.GC.Server": true,
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
}
}
}
File diff suppressed because one or more lines are too long
@@ -0,0 +1,8 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}
@@ -0,0 +1,9 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
}
@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")]
@@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Views")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Views")]
[assembly: System.Reflection.AssemblyTitleAttribute("Views")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.
@@ -0,0 +1 @@
7b2810b91a66998ca54b697dbc05a9f90d9cd55c
@@ -0,0 +1,53 @@
is_global = true
build_property.TargetFramework = net6.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb = true
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Views
build_property.RootNamespace = Views
build_property.ProjectDir = E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session03\Projects\Views\
build_property.RazorLangVersion = 6.0
build_property.SupportLocalizedComponentNames =
build_property.GenerateRazorMetadataSourceChecksumAttributes =
build_property.MSBuildProjectDirectory = E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session03\Projects\Views
build_property._RazorSourceGeneratorDebug =
[E:/TheOrder/ASP.NET/ASP.NET/Repo/Sessions/Session03/Projects/Views/Views/Home/Index.cshtml]
build_metadata.AdditionalFiles.TargetPath = Vmlld3NcSG9tZVxJbmRleC5jc2h0bWw=
build_metadata.AdditionalFiles.CssScope =
[E:/TheOrder/ASP.NET/ASP.NET/Repo/Sessions/Session03/Projects/Views/Views/Home/Privacy.cshtml]
build_metadata.AdditionalFiles.TargetPath = Vmlld3NcSG9tZVxQcml2YWN5LmNzaHRtbA==
build_metadata.AdditionalFiles.CssScope =
[E:/TheOrder/ASP.NET/ASP.NET/Repo/Sessions/Session03/Projects/Views/Views/Micro/Index.cshtml]
build_metadata.AdditionalFiles.TargetPath = Vmlld3NcTWljcm9cSW5kZXguY3NodG1s
build_metadata.AdditionalFiles.CssScope =
[E:/TheOrder/ASP.NET/ASP.NET/Repo/Sessions/Session03/Projects/Views/Views/Shared/Error.cshtml]
build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXEVycm9yLmNzaHRtbA==
build_metadata.AdditionalFiles.CssScope =
[E:/TheOrder/ASP.NET/ASP.NET/Repo/Sessions/Session03/Projects/Views/Views/Shared/Index2.cshtml]
build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXEluZGV4Mi5jc2h0bWw=
build_metadata.AdditionalFiles.CssScope =
[E:/TheOrder/ASP.NET/ASP.NET/Repo/Sessions/Session03/Projects/Views/Views/Shared/_ValidationScriptsPartial.cshtml]
build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXF9WYWxpZGF0aW9uU2NyaXB0c1BhcnRpYWwuY3NodG1s
build_metadata.AdditionalFiles.CssScope =
[E:/TheOrder/ASP.NET/ASP.NET/Repo/Sessions/Session03/Projects/Views/Views/_ViewImports.cshtml]
build_metadata.AdditionalFiles.TargetPath = Vmlld3NcX1ZpZXdJbXBvcnRzLmNzaHRtbA==
build_metadata.AdditionalFiles.CssScope =
[E:/TheOrder/ASP.NET/ASP.NET/Repo/Sessions/Session03/Projects/Views/Views/_ViewStart.cshtml]
build_metadata.AdditionalFiles.TargetPath = Vmlld3NcX1ZpZXdTdGFydC5jc2h0bWw=
build_metadata.AdditionalFiles.CssScope =
[E:/TheOrder/ASP.NET/ASP.NET/Repo/Sessions/Session03/Projects/Views/Views/Shared/_Layout.cshtml]
build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXF9MYXlvdXQuY3NodG1s
build_metadata.AdditionalFiles.CssScope = b-2ogqb6xjov
@@ -0,0 +1,17 @@
// <auto-generated/>
global using global::Microsoft.AspNetCore.Builder;
global using global::Microsoft.AspNetCore.Hosting;
global using global::Microsoft.AspNetCore.Http;
global using global::Microsoft.AspNetCore.Routing;
global using global::Microsoft.Extensions.Configuration;
global using global::Microsoft.Extensions.DependencyInjection;
global using global::Microsoft.Extensions.Hosting;
global using global::Microsoft.Extensions.Logging;
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Net.Http.Json;
global using global::System.Threading;
global using global::System.Threading.Tasks;
@@ -0,0 +1 @@
5860763757f4f08c7ebdea1b3a94a18109f17861
@@ -0,0 +1,18 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ProvideApplicationPartFactoryAttribute("Microsoft.AspNetCore.Mvc.ApplicationParts.ConsolidatedAssemblyApplicationPartFact" +
"ory, Microsoft.AspNetCore.Mvc.Razor")]
// Generated by the MSBuild WriteCodeFragment class.
@@ -0,0 +1 @@
dfec7838ff300a076c8aed652e2a96edd2e504be
@@ -0,0 +1,60 @@
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session04\Views\bin\Debug\net6.0\appsettings.Development.json
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session04\Views\bin\Debug\net6.0\appsettings.json
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session04\Views\bin\Debug\net6.0\Views.staticwebassets.runtime.json
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session04\Views\bin\Debug\net6.0\Views.exe
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session04\Views\bin\Debug\net6.0\Views.deps.json
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session04\Views\bin\Debug\net6.0\Views.runtimeconfig.json
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session04\Views\bin\Debug\net6.0\Views.dll
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session04\Views\bin\Debug\net6.0\Views.pdb
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session04\Views\obj\Debug\net6.0\Views.GeneratedMSBuildEditorConfig.editorconfig
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session04\Views\obj\Debug\net6.0\Views.AssemblyInfoInputs.cache
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session04\Views\obj\Debug\net6.0\Views.AssemblyInfo.cs
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session04\Views\obj\Debug\net6.0\Views.csproj.CoreCompileInputs.cache
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session04\Views\obj\Debug\net6.0\Views.MvcApplicationPartsAssemblyInfo.cache
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session04\Views\obj\Debug\net6.0\Views.RazorAssemblyInfo.cache
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session04\Views\obj\Debug\net6.0\Views.RazorAssemblyInfo.cs
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session04\Views\obj\Debug\net6.0\staticwebassets\msbuild.Views.Microsoft.AspNetCore.StaticWebAssets.props
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session04\Views\obj\Debug\net6.0\staticwebassets\msbuild.build.Views.props
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session04\Views\obj\Debug\net6.0\staticwebassets\msbuild.buildMultiTargeting.Views.props
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session04\Views\obj\Debug\net6.0\staticwebassets\msbuild.buildTransitive.Views.props
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session04\Views\obj\Debug\net6.0\staticwebassets.pack.json
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session04\Views\obj\Debug\net6.0\staticwebassets.build.json
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session04\Views\obj\Debug\net6.0\staticwebassets.development.json
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session04\Views\obj\Debug\net6.0\scopedcss\Views\Shared\_Layout.cshtml.rz.scp.css
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session04\Views\obj\Debug\net6.0\scopedcss\bundle\Views.styles.css
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session04\Views\obj\Debug\net6.0\scopedcss\projectbundle\Views.bundle.scp.css
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session04\Views\obj\Debug\net6.0\Views.dll
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session04\Views\obj\Debug\net6.0\refint\Views.dll
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session04\Views\obj\Debug\net6.0\Views.pdb
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session04\Views\obj\Debug\net6.0\Views.genruntimeconfig.cache
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session04\Views\obj\Debug\net6.0\ref\Views.dll
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session03\Projects\Views\bin\Debug\net6.0\appsettings.Development.json
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session03\Projects\Views\bin\Debug\net6.0\appsettings.json
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session03\Projects\Views\bin\Debug\net6.0\Views.staticwebassets.runtime.json
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session03\Projects\Views\bin\Debug\net6.0\Views.exe
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session03\Projects\Views\bin\Debug\net6.0\Views.deps.json
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session03\Projects\Views\bin\Debug\net6.0\Views.runtimeconfig.json
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session03\Projects\Views\bin\Debug\net6.0\Views.dll
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session03\Projects\Views\bin\Debug\net6.0\Views.pdb
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session03\Projects\Views\obj\Debug\net6.0\Views.GeneratedMSBuildEditorConfig.editorconfig
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session03\Projects\Views\obj\Debug\net6.0\Views.AssemblyInfoInputs.cache
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session03\Projects\Views\obj\Debug\net6.0\Views.AssemblyInfo.cs
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session03\Projects\Views\obj\Debug\net6.0\Views.csproj.CoreCompileInputs.cache
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session03\Projects\Views\obj\Debug\net6.0\Views.MvcApplicationPartsAssemblyInfo.cache
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session03\Projects\Views\obj\Debug\net6.0\Views.RazorAssemblyInfo.cache
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session03\Projects\Views\obj\Debug\net6.0\Views.RazorAssemblyInfo.cs
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session03\Projects\Views\obj\Debug\net6.0\staticwebassets\msbuild.Views.Microsoft.AspNetCore.StaticWebAssets.props
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session03\Projects\Views\obj\Debug\net6.0\staticwebassets\msbuild.build.Views.props
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session03\Projects\Views\obj\Debug\net6.0\staticwebassets\msbuild.buildMultiTargeting.Views.props
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session03\Projects\Views\obj\Debug\net6.0\staticwebassets\msbuild.buildTransitive.Views.props
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session03\Projects\Views\obj\Debug\net6.0\staticwebassets.pack.json
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session03\Projects\Views\obj\Debug\net6.0\staticwebassets.build.json
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session03\Projects\Views\obj\Debug\net6.0\staticwebassets.development.json
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session03\Projects\Views\obj\Debug\net6.0\scopedcss\Views\Shared\_Layout.cshtml.rz.scp.css
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session03\Projects\Views\obj\Debug\net6.0\scopedcss\bundle\Views.styles.css
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session03\Projects\Views\obj\Debug\net6.0\scopedcss\projectbundle\Views.bundle.scp.css
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session03\Projects\Views\obj\Debug\net6.0\Views.dll
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session03\Projects\Views\obj\Debug\net6.0\refint\Views.dll
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session03\Projects\Views\obj\Debug\net6.0\Views.pdb
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session03\Projects\Views\obj\Debug\net6.0\Views.genruntimeconfig.cache
E:\TheOrder\ASP.NET\ASP.NET\Repo\Sessions\Session03\Projects\Views\obj\Debug\net6.0\ref\Views.dll
@@ -0,0 +1 @@
c4b6e5e51666ef6c6514fa8248e667b5cc64c8f1
File diff suppressed because one or more lines are too long
@@ -0,0 +1,48 @@
/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */
a.navbar-brand[b-2ogqb6xjov] {
white-space: normal;
text-align: center;
word-break: break-all;
}
a[b-2ogqb6xjov] {
color: #0077cc;
}
.btn-primary[b-2ogqb6xjov] {
color: #fff;
background-color: #1b6ec2;
border-color: #1861ac;
}
.nav-pills .nav-link.active[b-2ogqb6xjov], .nav-pills .show > .nav-link[b-2ogqb6xjov] {
color: #fff;
background-color: #1b6ec2;
border-color: #1861ac;
}
.border-top[b-2ogqb6xjov] {
border-top: 1px solid #e5e5e5;
}
.border-bottom[b-2ogqb6xjov] {
border-bottom: 1px solid #e5e5e5;
}
.box-shadow[b-2ogqb6xjov] {
box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}
button.accept-policy[b-2ogqb6xjov] {
font-size: 1rem;
line-height: inherit;
}
.footer[b-2ogqb6xjov] {
position: absolute;
bottom: 0;
width: 100%;
white-space: nowrap;
line-height: 60px;
}
@@ -0,0 +1,49 @@
/* _content/Views/Views/Shared/_Layout.cshtml.rz.scp.css */
/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */
a.navbar-brand[b-2ogqb6xjov] {
white-space: normal;
text-align: center;
word-break: break-all;
}
a[b-2ogqb6xjov] {
color: #0077cc;
}
.btn-primary[b-2ogqb6xjov] {
color: #fff;
background-color: #1b6ec2;
border-color: #1861ac;
}
.nav-pills .nav-link.active[b-2ogqb6xjov], .nav-pills .show > .nav-link[b-2ogqb6xjov] {
color: #fff;
background-color: #1b6ec2;
border-color: #1861ac;
}
.border-top[b-2ogqb6xjov] {
border-top: 1px solid #e5e5e5;
}
.border-bottom[b-2ogqb6xjov] {
border-bottom: 1px solid #e5e5e5;
}
.box-shadow[b-2ogqb6xjov] {
box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}
button.accept-policy[b-2ogqb6xjov] {
font-size: 1rem;
line-height: inherit;
}
.footer[b-2ogqb6xjov] {
position: absolute;
bottom: 0;
width: 100%;
white-space: nowrap;
line-height: 60px;
}
@@ -0,0 +1,49 @@
/* _content/Views/Views/Shared/_Layout.cshtml.rz.scp.css */
/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */
a.navbar-brand[b-2ogqb6xjov] {
white-space: normal;
text-align: center;
word-break: break-all;
}
a[b-2ogqb6xjov] {
color: #0077cc;
}
.btn-primary[b-2ogqb6xjov] {
color: #fff;
background-color: #1b6ec2;
border-color: #1861ac;
}
.nav-pills .nav-link.active[b-2ogqb6xjov], .nav-pills .show > .nav-link[b-2ogqb6xjov] {
color: #fff;
background-color: #1b6ec2;
border-color: #1861ac;
}
.border-top[b-2ogqb6xjov] {
border-top: 1px solid #e5e5e5;
}
.border-bottom[b-2ogqb6xjov] {
border-bottom: 1px solid #e5e5e5;
}
.box-shadow[b-2ogqb6xjov] {
box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}
button.accept-policy[b-2ogqb6xjov] {
font-size: 1rem;
line-height: inherit;
}
.footer[b-2ogqb6xjov] {
position: absolute;
bottom: 0;
width: 100%;
white-space: nowrap;
line-height: 60px;
}
File diff suppressed because one or more lines are too long
@@ -0,0 +1,513 @@
{
"Files": [
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\obj\\Debug\\net6.0\\scopedcss\\projectbundle\\Views.bundle.scp.css",
"PackagePath": "staticwebassets\\Views.bundle.scp.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\css\\CSS\\.DS_Store",
"PackagePath": "staticwebassets\\css\\CSS\\.DS_Store"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\css\\CSS\\bootstrap-grid.css",
"PackagePath": "staticwebassets\\css\\CSS\\bootstrap-grid.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\css\\CSS\\bootstrap-grid.css.map",
"PackagePath": "staticwebassets\\css\\CSS\\bootstrap-grid.css.map"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\css\\CSS\\bootstrap-grid.min.css",
"PackagePath": "staticwebassets\\css\\CSS\\bootstrap-grid.min.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\css\\CSS\\bootstrap-grid.min.css.map",
"PackagePath": "staticwebassets\\css\\CSS\\bootstrap-grid.min.css.map"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\css\\CSS\\bootstrap-reboot.css",
"PackagePath": "staticwebassets\\css\\CSS\\bootstrap-reboot.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\css\\CSS\\bootstrap-reboot.css.map",
"PackagePath": "staticwebassets\\css\\CSS\\bootstrap-reboot.css.map"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\css\\CSS\\bootstrap-reboot.min.css",
"PackagePath": "staticwebassets\\css\\CSS\\bootstrap-reboot.min.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\css\\CSS\\bootstrap-reboot.min.css.map",
"PackagePath": "staticwebassets\\css\\CSS\\bootstrap-reboot.min.css.map"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\css\\CSS\\bootstrap.css",
"PackagePath": "staticwebassets\\css\\CSS\\bootstrap.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\css\\CSS\\bootstrap.css.map",
"PackagePath": "staticwebassets\\css\\CSS\\bootstrap.css.map"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\css\\CSS\\bootstrap.min.css",
"PackagePath": "staticwebassets\\css\\CSS\\bootstrap.min.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\css\\CSS\\bootstrap.min.css.map",
"PackagePath": "staticwebassets\\css\\CSS\\bootstrap.min.css.map"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\css\\CSS\\font-awesome.min.css",
"PackagePath": "staticwebassets\\css\\CSS\\font-awesome.min.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\css\\CSS\\jquery.mCustomScrollbar.min.css",
"PackagePath": "staticwebassets\\css\\CSS\\jquery.mCustomScrollbar.min.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\css\\CSS\\meanmenu.css",
"PackagePath": "staticwebassets\\css\\CSS\\meanmenu.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\css\\CSS\\owl.carousel.css",
"PackagePath": "staticwebassets\\css\\CSS\\owl.carousel.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\css\\CSS\\owl.carousel.min.css",
"PackagePath": "staticwebassets\\css\\CSS\\owl.carousel.min.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\css\\CSS\\owl.theme.default.css",
"PackagePath": "staticwebassets\\css\\CSS\\owl.theme.default.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\css\\CSS\\owl.theme.default.min.css",
"PackagePath": "staticwebassets\\css\\CSS\\owl.theme.default.min.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\css\\CSS\\owl.theme.green.css",
"PackagePath": "staticwebassets\\css\\CSS\\owl.theme.green.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\css\\CSS\\owl.theme.green.min.css",
"PackagePath": "staticwebassets\\css\\CSS\\owl.theme.green.min.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\css\\CSS\\responsive.css",
"PackagePath": "staticwebassets\\css\\CSS\\responsive.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\css\\CSS\\style.css",
"PackagePath": "staticwebassets\\css\\CSS\\style.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\css\\site.css",
"PackagePath": "staticwebassets\\css\\site.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\favicon.ico",
"PackagePath": "staticwebassets\\favicon.ico"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\images\\.DS_Store",
"PackagePath": "staticwebassets\\images\\.DS_Store"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\images\\about_img.jpg",
"PackagePath": "staticwebassets\\images\\about_img.jpg"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\images\\banner.jpg",
"PackagePath": "staticwebassets\\images\\banner.jpg"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\images\\banner2.jpg",
"PackagePath": "staticwebassets\\images\\banner2.jpg"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\images\\bbnner.png",
"PackagePath": "staticwebassets\\images\\bbnner.png"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\images\\footer.jpg",
"PackagePath": "staticwebassets\\images\\footer.jpg"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\images\\icon.png",
"PackagePath": "staticwebassets\\images\\icon.png"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\images\\icon_right.png",
"PackagePath": "staticwebassets\\images\\icon_right.png"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\images\\loading.gif",
"PackagePath": "staticwebassets\\images\\loading.gif"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\images\\logo.png",
"PackagePath": "staticwebassets\\images\\logo.png"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\images\\menu_btn.png",
"PackagePath": "staticwebassets\\images\\menu_btn.png"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\images\\mics_img1.jpg",
"PackagePath": "staticwebassets\\images\\mics_img1.jpg"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\images\\mics_img2.jpg",
"PackagePath": "staticwebassets\\images\\mics_img2.jpg"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\images\\mics_img3.jpg",
"PackagePath": "staticwebassets\\images\\mics_img3.jpg"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\images\\mics_img4.jpg",
"PackagePath": "staticwebassets\\images\\mics_img4.jpg"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\images\\mics_img5.jpg",
"PackagePath": "staticwebassets\\images\\mics_img5.jpg"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\images\\mics_img6.jpg",
"PackagePath": "staticwebassets\\images\\mics_img6.jpg"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\images\\right_side.png",
"PackagePath": "staticwebassets\\images\\right_side.png"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\images\\service1.png",
"PackagePath": "staticwebassets\\images\\service1.png"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\images\\service2.png",
"PackagePath": "staticwebassets\\images\\service2.png"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\images\\service3.png",
"PackagePath": "staticwebassets\\images\\service3.png"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\images\\test.png",
"PackagePath": "staticwebassets\\images\\test.png"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\js\\JS\\.DS_Store",
"PackagePath": "staticwebassets\\js\\JS\\.DS_Store"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\js\\JS\\bootstrap.bundle.js",
"PackagePath": "staticwebassets\\js\\JS\\bootstrap.bundle.js"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\js\\JS\\bootstrap.bundle.js.map",
"PackagePath": "staticwebassets\\js\\JS\\bootstrap.bundle.js.map"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\js\\JS\\bootstrap.bundle.min.js",
"PackagePath": "staticwebassets\\js\\JS\\bootstrap.bundle.min.js"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\js\\JS\\bootstrap.bundle.min.js.map",
"PackagePath": "staticwebassets\\js\\JS\\bootstrap.bundle.min.js.map"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\js\\JS\\bootstrap.js",
"PackagePath": "staticwebassets\\js\\JS\\bootstrap.js"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\js\\JS\\bootstrap.js.map",
"PackagePath": "staticwebassets\\js\\JS\\bootstrap.js.map"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\js\\JS\\bootstrap.min.js",
"PackagePath": "staticwebassets\\js\\JS\\bootstrap.min.js"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\js\\JS\\bootstrap.min.js.map",
"PackagePath": "staticwebassets\\js\\JS\\bootstrap.min.js.map"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\js\\JS\\custom.js",
"PackagePath": "staticwebassets\\js\\JS\\custom.js"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\js\\JS\\jquery-3.0.0.min.js",
"PackagePath": "staticwebassets\\js\\JS\\jquery-3.0.0.min.js"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\js\\JS\\jquery.mCustomScrollbar.concat.min.js",
"PackagePath": "staticwebassets\\js\\JS\\jquery.mCustomScrollbar.concat.min.js"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\js\\JS\\jquery.min.js",
"PackagePath": "staticwebassets\\js\\JS\\jquery.min.js"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\js\\JS\\owl.carousel.js",
"PackagePath": "staticwebassets\\js\\JS\\owl.carousel.js"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\js\\JS\\owl.carousel.min.js",
"PackagePath": "staticwebassets\\js\\JS\\owl.carousel.min.js"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\js\\JS\\popper.min.js",
"PackagePath": "staticwebassets\\js\\JS\\popper.min.js"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\js\\site.js",
"PackagePath": "staticwebassets\\js\\site.js"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\LICENSE",
"PackagePath": "staticwebassets\\lib\\bootstrap"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css.map",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css.map"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css.map",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css.map"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css.map",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css.map"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css.map",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap.css.map"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap.min.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css.map",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap.min.css.map"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css.map",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css.map"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js.map",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js.map"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js.map",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js.map"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.js"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js.map",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.js.map"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.min.js"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js.map",
"PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.min.js.map"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\jquery-validation-unobtrusive\\LICENSE.txt",
"PackagePath": "staticwebassets\\lib\\jquery-validation-unobtrusive\\LICENSE.txt"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.js",
"PackagePath": "staticwebassets\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.js"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.min.js",
"PackagePath": "staticwebassets\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.min.js"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\jquery-validation\\LICENSE.md",
"PackagePath": "staticwebassets\\lib\\jquery-validation\\LICENSE.md"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\jquery-validation\\dist\\additional-methods.js",
"PackagePath": "staticwebassets\\lib\\jquery-validation\\dist\\additional-methods.js"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\jquery-validation\\dist\\additional-methods.min.js",
"PackagePath": "staticwebassets\\lib\\jquery-validation\\dist\\additional-methods.min.js"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\jquery-validation\\dist\\jquery.validate.js",
"PackagePath": "staticwebassets\\lib\\jquery-validation\\dist\\jquery.validate.js"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\jquery-validation\\dist\\jquery.validate.min.js",
"PackagePath": "staticwebassets\\lib\\jquery-validation\\dist\\jquery.validate.min.js"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\jquery\\LICENSE.txt",
"PackagePath": "staticwebassets\\lib\\jquery\\LICENSE.txt"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\jquery\\dist\\jquery.js",
"PackagePath": "staticwebassets\\lib\\jquery\\dist\\jquery.js"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\jquery\\dist\\jquery.min.js",
"PackagePath": "staticwebassets\\lib\\jquery\\dist\\jquery.min.js"
},
{
"Id": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\wwwroot\\lib\\jquery\\dist\\jquery.min.map",
"PackagePath": "staticwebassets\\lib\\jquery\\dist\\jquery.min.map"
},
{
"Id": "obj\\Debug\\net6.0\\staticwebassets\\msbuild.Views.Microsoft.AspNetCore.StaticWebAssets.props",
"PackagePath": "build\\Microsoft.AspNetCore.StaticWebAssets.props"
},
{
"Id": "obj\\Debug\\net6.0\\staticwebassets\\msbuild.build.Views.props",
"PackagePath": "build\\Views.props"
},
{
"Id": "obj\\Debug\\net6.0\\staticwebassets\\msbuild.buildMultiTargeting.Views.props",
"PackagePath": "buildMultiTargeting\\Views.props"
},
{
"Id": "obj\\Debug\\net6.0\\staticwebassets\\msbuild.buildTransitive.Views.props",
"PackagePath": "buildTransitive\\Views.props"
}
],
"ElementsToRemove": []
}
@@ -0,0 +1,3 @@
<Project>
<Import Project="Microsoft.AspNetCore.StaticWebAssets.props" />
</Project>
@@ -0,0 +1,3 @@
<Project>
<Import Project="..\build\Views.props" />
</Project>
@@ -0,0 +1,3 @@
<Project>
<Import Project="..\buildMultiTargeting\Views.props" />
</Project>
@@ -0,0 +1,71 @@
{
"format": 1,
"restore": {
"E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\Views.csproj": {}
},
"projects": {
"E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\Views.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\Views.csproj",
"projectName": "Views",
"projectPath": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\Views.csproj",
"packagesPath": "C:\\Users\\LENOVO\\.nuget\\packages\\",
"outputPath": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\LENOVO\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"C:\\Program Files\\dotnet\\library-packs": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.AspNetCore.App": {
"privateAssets": "none"
},
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.402\\RuntimeIdentifierGraph.json"
}
}
}
}
}
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\LENOVO\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.7.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\LENOVO\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
</ItemGroup>
</Project>
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
@@ -0,0 +1,77 @@
{
"version": 3,
"targets": {
"net6.0": {}
},
"libraries": {},
"projectFileDependencyGroups": {
"net6.0": []
},
"packageFolders": {
"C:\\Users\\LENOVO\\.nuget\\packages\\": {},
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\Views.csproj",
"projectName": "Views",
"projectPath": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\Views.csproj",
"packagesPath": "C:\\Users\\LENOVO\\.nuget\\packages\\",
"outputPath": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\LENOVO\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"C:\\Program Files\\dotnet\\library-packs": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.AspNetCore.App": {
"privateAssets": "none"
},
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.402\\RuntimeIdentifierGraph.json"
}
}
}
}
@@ -0,0 +1,8 @@
{
"version": 2,
"dgSpecHash": "IoNHVMm6UAXYdj2OYAGqGv57oegZ1ioMiIid8+fuCosC5Eij8jtu6tzVNmAXdpspjg+bMVs/Ipyo/+hxRepyOQ==",
"success": true,
"projectFilePath": "E:\\TheOrder\\ASP.NET\\ASP.NET\\Repo\\Sessions\\Session03\\Projects\\Views\\Views.csproj",
"expectedPackageFiles": [],
"logs": []
}
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,330 @@
/*!
* Bootstrap Reboot v4.1.0 (https://getbootstrap.com/)
* Copyright 2011-2018 The Bootstrap Authors
* Copyright 2011-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
*/
*,
*::before,
*::after {
box-sizing: border-box;
}
html {
font-family: sans-serif;
line-height: 1.15;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
-ms-overflow-style: scrollbar;
-webkit-tap-highlight-color: transparent;
}
@-ms-viewport {
width: device-width;
}
article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
display: block;
}
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
text-align: left;
background-color: #fff;
}
[tabindex="-1"]:focus {
outline: 0 !important;
}
hr {
box-sizing: content-box;
height: 0;
overflow: visible;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 0;
margin-bottom: 0.5rem;
}
p {
margin-top: 0;
margin-bottom: 1rem;
}
abbr[title],
abbr[data-original-title] {
text-decoration: underline;
-webkit-text-decoration: underline dotted;
text-decoration: underline dotted;
cursor: help;
border-bottom: 0;
}
address {
margin-bottom: 1rem;
font-style: normal;
line-height: inherit;
}
ol,
ul,
dl {
margin-top: 0;
margin-bottom: 1rem;
}
ol ol,
ul ul,
ol ul,
ul ol {
margin-bottom: 0;
}
dt {
font-weight: 700;
}
dd {
margin-bottom: .5rem;
margin-left: 0;
}
blockquote {
margin: 0 0 1rem;
}
dfn {
font-style: italic;
}
b,
strong {
font-weight: bolder;
}
small {
font-size: 80%;
}
sub,
sup {
position: relative;
font-size: 75%;
line-height: 0;
vertical-align: baseline;
}
sub {
bottom: -.25em;
}
sup {
top: -.5em;
}
a {
color: #007bff;
text-decoration: none;
background-color: transparent;
-webkit-text-decoration-skip: objects;
}
a:hover {
color: #0056b3;
text-decoration: underline;
}
a:not([href]):not([tabindex]) {
color: inherit;
text-decoration: none;
}
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
color: inherit;
text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
outline: 0;
}
pre,
code,
kbd,
samp {
font-family: monospace, monospace;
font-size: 1em;
}
pre {
margin-top: 0;
margin-bottom: 1rem;
overflow: auto;
-ms-overflow-style: scrollbar;
}
figure {
margin: 0 0 1rem;
}
img {
vertical-align: middle;
border-style: none;
}
svg:not(:root) {
overflow: hidden;
}
table {
border-collapse: collapse;
}
caption {
padding-top: 0.75rem;
padding-bottom: 0.75rem;
color: #6c757d;
text-align: left;
caption-side: bottom;
}
th {
text-align: inherit;
}
label {
display: inline-block;
margin-bottom: 0.5rem;
}
button {
border-radius: 0;
}
button:focus {
outline: 1px dotted;
outline: 5px auto -webkit-focus-ring-color;
}
input,
button,
select,
optgroup,
textarea {
margin: 0;
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
button,
input {
overflow: visible;
}
button,
select {
text-transform: none;
}
button,
html [type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
padding: 0;
border-style: none;
}
input[type="radio"],
input[type="checkbox"] {
box-sizing: border-box;
padding: 0;
}
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
-webkit-appearance: listbox;
}
textarea {
overflow: auto;
resize: vertical;
}
fieldset {
min-width: 0;
padding: 0;
margin: 0;
border: 0;
}
legend {
display: block;
width: 100%;
max-width: 100%;
padding: 0;
margin-bottom: .5rem;
font-size: 1.5rem;
line-height: inherit;
color: inherit;
white-space: normal;
}
progress {
vertical-align: baseline;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
height: auto;
}
[type="search"] {
outline-offset: -2px;
-webkit-appearance: none;
}
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
::-webkit-file-upload-button {
font: inherit;
-webkit-appearance: button;
}
output {
display: inline-block;
}
summary {
display: list-item;
cursor: pointer;
}
template {
display: none;
}
[hidden] {
display: none !important;
}
/*# sourceMappingURL=bootstrap-reboot.css.map */
File diff suppressed because one or more lines are too long
@@ -0,0 +1,8 @@
/*!
* Bootstrap Reboot v4.1.0 (https://getbootstrap.com/)
* Copyright 2011-2018 The Bootstrap Authors
* Copyright 2011-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
*/*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent}@-ms-viewport{width:device-width}article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}dfn{font-style:italic}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg:not(:root){overflow:hidden}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}
/*# sourceMappingURL=bootstrap-reboot.min.css.map */
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,154 @@
/*--------------------------------------------------------------------- File Name: meanmenu.css ---------------------------------------------------------------------*/
a.meanmenu-reveal {
display: none;
}
.mean-container .mean-bar {
background: #0e100e;
float: left;
min-height: 40px;
padding: 5px 0;
position: relative;
width: 100%;
z-index: 999;
margin-top: 15px;
}
.mean-container a.meanmenu-reveal {
color: #fff;
cursor: pointer;
display: block;
font-family: 'Roboto', sans-serif;
font-weight: 400;
height: 22px;
line-height: 22px;
position: absolute;
right: 12px;
text-decoration: none;
top: 12px;
width: 26px;
}
.mean-container a.meanmenu-reveal span {
background: #ffffff none repeat scroll 0 0;
border-radius: 0;
display: block;
height: 4px;
margin-top: 3px;
width: auto;
}
.mean-container a.meanmenu-reveal span:first-child {
margin: 0
}
.mean-container .mean-nav {
background: #ffffff none repeat scroll 0 0;
float: left;
margin-top: 44px;
width: 100%;
}
.mean-container .mean-nav ul {
padding: 0;
margin: 0;
width: 100%;
list-style-type: none;
}
.mean-container .mean-nav ul li {
position: relative;
float: left;
width: 100%;
}
.mean-container .mean-nav ul li a {
border-bottom: 1px solid #ccc;
color: #383838;
display: block;
float: left;
font-size: 12px;
font-weight: 500;
margin: 0;
padding: 1em 5%;
text-align: left;
text-decoration: none;
text-transform: uppercase;
width: 90%;
}
.mean-container .mean-nav ul li a:hover {
color: #38c8a8;
}
.mean-container .mean-nav ul li li a {
width: 80%;
padding: 1em 10%;
border-top: 1px solid #ccc;
border-top: 1px solid #ccc;
opacity: 1;
filter: alpha(opacity=1);
text-shadow: none !important;
visibility: visible;
}
.mean-container .mean-nav ul li.mean-last a {
border-bottom: 1px solid #cccccc;
margin-bottom: 0;
}
.mean-container .mean-nav ul li li li a {
width: 70%;
padding: 1em 15%;
}
.mean-container .mean-nav ul li li li li a {
width: 60%;
padding: 1em 20%;
}
.mean-container .mean-nav ul li li li li li a {
width: 50%;
padding: 1em 25%;
}
.mean-container .mean-nav ul li a:hover {
` background: #252525;
background: rgba(255, 255, 255, 0.1);
}
.mean-container .mean-nav ul li a.mean-expand {
background: rgba(255, 255, 255, 0.1) none repeat scroll 0 0;
border: medium none;
font-weight: 400;
height: 22px;
line-height: 22px;
margin-top: 1px;
padding: 12px 16px;
position: absolute;
right: 0;
text-align: center;
top: -1px;
width: 17px;
z-index: 2;
font-size: 18px !important;
}
.mean-container .mean-nav ul li a.mean-expand:hover {
background: rgba(0, 0, 0, 0.9) none repeat scroll 0 0;
color: #ffffff;
}
.mean-container .mean-push {
float: left;
width: 100%;
padding: 0;
margin: 0;
clear: both;
}
.mean-nav .wrapper {
width: 100%;
padding: 0;
margin: 0;
}
.mean-container .mean-bar, .mean-container .mean-bar * {
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
}
.mean-remove {
display: none !important;
}
.mean-nav span {
display: none;
}
.mean-container .mean-nav ul li a.mean-expand:hover, .mean-container .mean-nav ul li a.mean-expand:focus {
background: #38c8a8;
color: #ffffff;
}
.mean-container .mean-nav ul li a:hover {
color: #ad2100;
}
@@ -0,0 +1,186 @@
/**
* Owl Carousel v2.3.4
* Copyright 2013-2018 David Deutsch
* Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
*/
/*
* Owl Carousel - Core
*/
.owl-carousel {
display: none;
width: 100%;
-webkit-tap-highlight-color: transparent;
/* position relative and z-index fix webkit rendering fonts issue */
position: relative;
z-index: 1; }
.owl-carousel .owl-stage {
position: relative;
-ms-touch-action: pan-Y;
touch-action: manipulation;
-moz-backface-visibility: hidden;
/* fix firefox animation glitch */ }
.owl-carousel .owl-stage:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0; }
.owl-carousel .owl-stage-outer {
position: relative;
overflow: hidden;
/* fix for flashing background */
-webkit-transform: translate3d(0px, 0px, 0px); }
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-ms-backface-visibility: hidden;
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0); }
.owl-carousel .owl-item {
position: relative;
min-height: 1px;
float: left;
-webkit-backface-visibility: hidden;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none; }
.owl-carousel .owl-item img {
display: block;
width: 100%; }
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
display: none; }
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
cursor: pointer;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; }
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
background: none;
color: inherit;
border: none;
padding: 0 !important;
font: inherit; }
.owl-carousel.owl-loaded {
display: block; }
.owl-carousel.owl-loading {
opacity: 0;
display: block; }
.owl-carousel.owl-hidden {
opacity: 0; }
.owl-carousel.owl-refresh .owl-item {
visibility: hidden; }
.owl-carousel.owl-drag .owl-item {
-ms-touch-action: pan-y;
touch-action: pan-y;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; }
.owl-carousel.owl-grab {
cursor: move;
cursor: grab; }
.owl-carousel.owl-rtl {
direction: rtl; }
.owl-carousel.owl-rtl .owl-item {
float: right; }
/* No Js */
.no-js .owl-carousel {
display: block; }
/*
* Owl Carousel - Animate Plugin
*/
.owl-carousel .animated {
animation-duration: 1000ms;
animation-fill-mode: both; }
.owl-carousel .owl-animated-in {
z-index: 0; }
.owl-carousel .owl-animated-out {
z-index: 1; }
.owl-carousel .fadeOut {
animation-name: fadeOut; }
@keyframes fadeOut {
0% {
opacity: 1; }
100% {
opacity: 0; } }
/*
* Owl Carousel - Auto Height Plugin
*/
.owl-height {
transition: height 500ms ease-in-out; }
/*
* Owl Carousel - Lazy Load Plugin
*/
.owl-carousel .owl-item {
/**
This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
calculation of the height of the owl-item that breaks page layouts
*/ }
.owl-carousel .owl-item .owl-lazy {
opacity: 0;
transition: opacity 400ms ease; }
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
max-height: 0; }
.owl-carousel .owl-item img.owl-lazy {
transform-style: preserve-3d; }
/*
* Owl Carousel - Video Plugin
*/
.owl-carousel .owl-video-wrapper {
position: relative;
height: 100%;
background: #000; }
.owl-carousel .owl-video-play-icon {
position: absolute;
height: 80px;
width: 80px;
left: 50%;
top: 50%;
margin-left: -40px;
margin-top: -40px;
background: url("owl.video.play.png") no-repeat;
cursor: pointer;
z-index: 1;
-webkit-backface-visibility: hidden;
transition: transform 100ms ease; }
.owl-carousel .owl-video-play-icon:hover {
-ms-transform: scale(1.3, 1.3);
transform: scale(1.3, 1.3); }
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
display: none; }
.owl-carousel .owl-video-tn {
opacity: 0;
height: 100%;
background-position: center center;
background-repeat: no-repeat;
background-size: contain;
transition: opacity 400ms ease; }
.owl-carousel .owl-video-frame {
position: relative;
z-index: 1;
height: 100%;
width: 100%; }
@@ -0,0 +1,6 @@
/**
* Owl Carousel v2.3.4
* Copyright 2013-2018 David Deutsch
* Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
*/
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
@@ -0,0 +1,50 @@
/**
* Owl Carousel v2.3.4
* Copyright 2013-2018 David Deutsch
* Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
*/
/*
* Default theme - Owl Carousel CSS File
*/
.owl-theme .owl-nav {
margin-top: 10px;
text-align: center;
-webkit-tap-highlight-color: transparent; }
.owl-theme .owl-nav [class*='owl-'] {
color: #FFF;
font-size: 14px;
margin: 5px;
padding: 4px 7px;
background: #D6D6D6;
display: inline-block;
cursor: pointer;
border-radius: 3px; }
.owl-theme .owl-nav [class*='owl-']:hover {
background: #869791;
color: #FFF;
text-decoration: none; }
.owl-theme .owl-nav .disabled {
opacity: 0.5;
cursor: default; }
.owl-theme .owl-nav.disabled + .owl-dots {
margin-top: 10px; }
.owl-theme .owl-dots {
text-align: center;
-webkit-tap-highlight-color: transparent; }
.owl-theme .owl-dots .owl-dot {
display: inline-block;
zoom: 1;
*display: inline; }
.owl-theme .owl-dots .owl-dot span {
width: 10px;
height: 10px;
margin: 5px 7px;
background: #D6D6D6;
display: block;
-webkit-backface-visibility: visible;
transition: opacity 200ms ease;
border-radius: 30px; }
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
background: #869791; }
@@ -0,0 +1,6 @@
/**
* Owl Carousel v2.3.4
* Copyright 2013-2018 David Deutsch
* Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
*/
.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}
@@ -0,0 +1,50 @@
/**
* Owl Carousel v2.3.4
* Copyright 2013-2018 David Deutsch
* Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
*/
/*
* Green theme - Owl Carousel CSS File
*/
.owl-theme .owl-nav {
margin-top: 10px;
text-align: center;
-webkit-tap-highlight-color: transparent; }
.owl-theme .owl-nav [class*='owl-'] {
color: #FFF;
font-size: 14px;
margin: 5px;
padding: 4px 7px;
background: #D6D6D6;
display: inline-block;
cursor: pointer;
border-radius: 3px; }
.owl-theme .owl-nav [class*='owl-']:hover {
background: #4DC7A0;
color: #FFF;
text-decoration: none; }
.owl-theme .owl-nav .disabled {
opacity: 0.5;
cursor: default; }
.owl-theme .owl-nav.disabled + .owl-dots {
margin-top: 10px; }
.owl-theme .owl-dots {
text-align: center;
-webkit-tap-highlight-color: transparent; }
.owl-theme .owl-dots .owl-dot {
display: inline-block;
zoom: 1;
*display: inline; }
.owl-theme .owl-dots .owl-dot span {
width: 10px;
height: 10px;
margin: 5px 7px;
background: #D6D6D6;
display: block;
-webkit-backface-visibility: visible;
transition: opacity 200ms ease;
border-radius: 30px; }
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
background: #4DC7A0; }
@@ -0,0 +1,6 @@
/**
* Owl Carousel v2.3.4
* Copyright 2013-2018 David Deutsch
* Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
*/
.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#4DC7A0;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#4DC7A0}
@@ -0,0 +1,107 @@
/*---------------------------------------------------------------------
File Name: responsive.css
---------------------------------------------------------------------*/
@media (min-width: 1343px) and (max-width: 1500px) {}
@media (min-width: 1200px) and (max-width: 1342px) {}
@media (min-width: 992px) and (max-width: 1199px) {
.banner_main .bluid h1 {
font-size: 110px;
line-height: 136px;
}
.about_img {
padding-right: 0;
}
.helpful ul li {
padding-right: 22px;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.titlepage h2 {
font-size: 37px;
line-height: 41px;
}
.service_img {
height: 226px;
width: 226px;
}
.about_img {
padding-right: 0;
}
.helpful ul li {
padding-right: 2px;
}
}
@media (min-width: 576px) and (max-width: 767px) {
.airmic {
margin-top: 40px;
margin-bottom: 30px;
}
.about_img {
padding-right: 0;
}
.about_img figure img {
padding-top: 30px;
}
}
@media (max-width: 575px) {
header {
padding: 33px 0px;
}
.d_none {
display: none !important;
}
ul.email {
margin-top: -43px;
}
.logo {
display: block;
width: 144px;
float: left;
}
.airmic {
padding-top: 60px;
margin-bottom: 30px;
}
.airmic h1 {
font-size: 53px;
line-height: 53px;
}
#top_section {
height: 100%;
}
.banner_main .bluid .read_more {
margin-right: 5px;
max-width: 124px;
height: 48px;
line-height: 48px;
font-size: 16px;
}
.titlepage h2 {
font-size: 35px;
line-height: 40px;
}
.about .titlepage {
padding-bottom: 40px;
}
.testomoniam_text {
padding: 40px 25px;
}
.about_img {
padding-right: 0;
}
.mics {
width: 290px;
}
.mics_icon {
width: 261px;
}
.d_none {
display: none;
}
}
@@ -0,0 +1,873 @@
/*---------------------------------------------------------------------
File Name: style.css
---------------------------------------------------------------------*/
/*---------------------------------------------------------------------
import Fonts
---------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,500i,700,700i,900,900i&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,600i,700,700i,800,800i&display=swap');
/*---------------------------------------------------------------------
import Files
---------------------------------------------------------------------*/
@import url(font-awesome.min.css);
@import url(owl.carousel.min.css);
/*---------------------------------------------------------------------
basic
---------------------------------------------------------------------*/
body {
color: #666666;
font-size: 14px;
font-family: 'Roboto', sans-serif;
line-height: 1.80857;
font-weight: normal;
}
a {
color: #1f1f1f;
text-decoration: none !important;
outline: none !important;
-webkit-transition: all .3s ease-in-out;
-moz-transition: all .3s ease-in-out;
-ms-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
}
h1,
h2,
h3,
h4,
h5,
h6 {
letter-spacing: 0;
font-weight: normal;
position: relative;
padding: 0;
font-weight: normal;
line-height: normal;
color: #111111;
margin: 0
}
h1 {
font-size: 24px
}
h2 {
font-size: 22px
}
h3 {
font-size: 18px
}
h4 {
font-size: 16px
}
h5 {
font-size: 14px
}
h6 {
font-size: 13px
}
*,
*::after,
*::before {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
color: #212121;
text-decoration: none!important;
opacity: 1
}
button:focus {
outline: none;
}
ul,
li,
ol {
margin: 0px;
padding: 0px;
list-style: none;
}
p {
margin: 0px;
padding: 0;
font-weight: 400;
font-size: 17px;
line-height: 28px;
}
a {
color: #222222;
text-decoration: none;
outline: none !important;
}
a,
.btn {
text-decoration: none !important;
outline: none !important;
-webkit-transition: all .3s ease-in-out;
-moz-transition: all .3s ease-in-out;
-ms-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
}
img {
max-width: 100%;
height: auto;
}
:focus {
outline: 0;
}
.btn-custom {
margin-top: 20px;
background-color: transparent !important;
border: 2px solid #ddd;
padding: 12px 40px;
font-size: 16px;
}
.lead {
font-size: 18px;
line-height: 30px;
color: #767676;
margin: 0;
padding: 0;
}
.form-control:focus {
border-color: #ffffff !important;
box-shadow: 0 0 0 .2rem rgba(255, 255, 255, .25);
}
.navbar-form input {
border: none !important;
}
.badge {
font-weight: 500;
}
blockquote {
margin: 20px 0 20px;
padding: 30px;
}
button {
border: 0;
margin: 0;
padding: 0;
cursor: pointer;
}
.full {
width: 100%;
float: left;
margin: 0;
padding: 0;
}
.titlepage {
padding-bottom: 60px;
}
.titlepage h2 {
font-size: 45px;
font-weight: bold;
line-height: 55px;
color: #181616;
padding-bottom: 10px;
}
.read_more {
display: inline-block;
background: #ffffff;
color: #000;
max-width: 200px;
height: 61px;
line-height: 61px;
width: 100%;
font-size: 17px;
text-align: center;
font-weight: 500;
border-radius: 10px;
transition: ease-in all 0.5s;
}
.read_more:hover {
background: #8f1588;
color: #fff;
transition: ease-in all 0.5s;
}
.img_responsive {
max-width: 100%;
}
.text_align_center {
text-align: center;
}
.text_align_left {
text-align: left;
}
.text_align_right {
text-align: right;
}
.d_flex {
display: flex;
align-items: center;
flex-wrap: wrap;
}
.container {
max-width: 1170px;
}
/*----------------------------
loader
----------------------------*/
.loader_bg {
position: fixed;
z-index: 9999999;
background: #fff;
width: 100%;
height: 100%;
}
.loader {
height: 100%;
width: 100%;
position: absolute;
left: 0;
top: 0;
display: flex;
justify-content: center;
align-items: center;
}
.loader img {
width: 280px;
}
/*---------------------------------------------------------------------
header
---------------------------------------------------------------------*/
header {
background: transparent;
width: 100%;
padding: 40px 30px;
position: absolute;
z-index: 9;
}
/*---------------------------------------------------------------------
menu section
---------------------------------------------------------------------*/
ul.email {
display: flex;
align-items: center;
justify-content: flex-end;
}
ul.email li {
display: inline-block;
}
ul.email li a {
font-size: 17px;
color: #fff;
display: flex;
align-items: center;
padding-right: 60px;
}
ul.email li a i {
font-size: 25px;
padding-right: 10px;
}
.sidepanel {
width: 0;
position: fixed;
z-index: 9999999;
height: 100%;
top: 0;
left: 0;
background-color: #8317cf;
overflow-x: hidden;
transition: 0.5s;
padding-top: 60px;
}
.sidepanel a {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 20px;
color: #fff;
display: block;
transition: 0.3s;
}
.sidepanel a:hover {
color: #a32149;
}
.sidepanel a.active {
color: #a32149;
}
.sidepanel .closebtn {
position: absolute;
top: 0;
right: 25px;
font-size: 36px;
}
.openbtn {
cursor: pointer;
background-color: transparent;
color: white;
border: none;
}
/** banner_main **/
.banner_main {
width: 100%;
background-size: cover;
padding-top: 110px;
position: relative;
/* background-attachment: fixed;*/
background-position: center;
}
.airmic {
text-align: left;
}
.airmic h1 {
color: #fff;
font-size: 64px;
line-height: 69px;
font-weight: bold;
padding-bottom: 35px;
}
.airmic p {
color: #fff;
line-height: 25px;
padding-bottom: 50px;
font-size: 17px;
}
.mic_img figure {
margin: 0;
}
/** services **/
.services {
padding-top: 80px;
padding-bottom: 50px;
background: #fff;
}
.services .titlepage p {
color: #b5b1b1;
}
.service_text h3 {
color: #090303;
font-size: 25px;
line-height: 25px;
padding-bottom: 10px;
font-weight: 500;
margin-top: 40px;
}
.service_text p {
color: #5c5c5c;
padding-bottom: 30px;
font-size: 15px;
line-height: 22px;
}
.service_img {
background: rgb(167, 19, 49);
background: linear-gradient(139deg, rgba(167, 19, 49, 1) 6%, rgba(138, 21, 171, 1) 96%);
border-radius: 50%;
height: 300px;
width: 300px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
}
/* end services */
/** about **/
.about {
background: linear-gradient(to left, #8f1588 4%, #8316cc 32%);
padding: 80px 0;
}
.about .titlepage {
padding-bottom: 0;
max-width: 554px;
float: right;
width: 100%;
}
.about .titlepage h2 {
color: #fff;
}
.about .titlepage p {
color: #fff;
padding-bottom: 35px;
}
.about_img {
padding-right: 30px;
}
.about_img figure {
margin: 0;
}
.about_img figure img {
border-radius: 50px;
}
.divright {
float: right;
}
/** end about **/
/* our_mics */
.our_mics {
background: #fff;
padding: 80px 0 40px 0;
}
.our_mics .titlepage p {
color: #b5b1b1;
}
.mics {
background: linear-gradient(to bottom, #b0130c 35%, #8316cc 60%);
padding: 5px;
border-radius: 50%;
margin: 0 auto;
}
.mics figure {
margin: 0;
}
.margin_bottom40 {
margin-bottom: 40px;
}
.mics figure img {
border-radius: 50%;
text-align: center;
}
.mics_icon {
opacity: 0;
margin: 0 auto;
position: absolute;
top: 15px;
text-align: center;
left: 30px;
right: 30px;
bottom: 15px;
background: #ffffff9c;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: ease-in all 0.5s;
}
.mics_icon a {
display: flex;
}
.mics_icon a i {
color: #8920c7 !important;
font-size: 25px;
}
#ho_show:hover .mics_icon {
opacity: 1;
cursor: pointer;
transition: ease-in all 0.5s;
}
/* end tranner */
/** testimonial **/
.testimonial {
padding-top: 80px;
padding-bottom: 142px;
background: rgb(154, 20, 91);
background: linear-gradient(62deg, rgba(154, 20, 91, 1) 12%, rgba(149, 20, 109, 1) 19%, rgba(137, 21, 160, 1) 30%, rgba(127, 22, 202, 1) 100%);
}
.testimonial .titlepage {
padding-bottom: 20px;
}
.testimonial .titlepage h2 {
color: #fff;
}
.testimonial .titlepage p {
color: #fff;
}
.posi_in {
position: inherit;
padding: 0;
}
.testomoniam_text {
background: #fff;
padding: 40px 50px;
border-radius: 70px;
position: relative;
margin-top: 64px;
}
.testomoniam_text::before {
position: absolute;
content: "";
top: -64px;
left: 0;
right: 0;
background: url(../images/test.png);
width: 88px;
height: 64px;
margin: 0 auto;
}
.testomoniam_text p {
color: #000000;
padding: 10px 0;
display: block;
}
#testimo .carousel-control-next,
#testimo .carousel-control-prev {
display: none;
}
.testimonial .carousel-indicators {
display: block;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
bottom: -60px;
}
.testimonial .carousel-indicators li {
width: 29px;
height: 29px;
border-radius: 20px;
display: inline-block;
background-color: #ffffff;
cursor: pointer;
}
.testimonial .carousel-indicators .active {
background-color: #0c0909;
}
/** end testimonial **/
/** contact section **/
.contact {
background: #ffffff;
padding: 80px 0 190px 0;
}
.contact .titlepage p {
color: #090404;
}
.main_form .contactus {
border: inherit;
padding: 0 15px;
margin-bottom: 25px;
width: 100%;
height: 68px;
background: #dbdada;
color: #969494;
font-size: 16px;
font-weight: normal;
}
.main_form .textarea {
border: inherit;
margin-bottom: 25px;
width: 100%;
background: #dbdada;
color: #969494;
font-size: 18px;
font-weight: normal;
padding: 36px 15px 0 15px;
border-radius: 0;
height: 109px;
}
.main_form .send_btn {
font-size: 17px;
transition: ease-in all 0.5s;
background-color: #0c0909;
color: #fff;
height: 68px;
line-height: 68px;
max-width: 216px;
width: 100%;
display: block;
margin-top: 10px !important;
font-weight: 500;
margin: 0 auto;
}
.main_form .send_btn:hover {
background-color: #7f16ca;
transition: ease-in all 0.5s;
color: #fff;
}
#request *::placeholder {
color: #969494;
opacity: 1;
}
/** end contact section **/
/** footer **/
.footer {
background: #450275;
padding-top: 90px;
position: relative;
}
.footer::before {
position: absolute;
content: "";
width: 100%;
background: url(../images/footer.jpg);
height: 251px;
top: -115px;
background-size: 100% 100%;
background-position: center;
}
.logo_footer {
margin-bottom: 15px;
display: block;
}
.Informa h3 {
color: #ffffff;
font-size: 25px;
font-weight: bold;
line-height: 25px;
margin-bottom: 15px;
margin-top: 30px;
}
.conta li {
font-size: 15px;
line-height: 29px;
color: #ffffff;
}
.helpful {
padding-top: 50px;
}
.helpful ul li {
display: inline-block;
padding-right: 30px;
}
.helpful ul li:last-child {
padding-right: 0;
}
.helpful ul li a {
text-transform: uppercase;
color: #fff;
font-size: 15px;
line-height: 29px;
}
.helpful ul li a:hover {
color: #ff0000;
}
.conta ul li a {
color: #ffffff;
}
.conta ul li a i {
padding-right: 5px;
}
ul.social_icon {
float: left;
padding-top: 15px;
}
ul.social_icon li {
display: inline-block;
padding-right: 10px;
}
ul.social_icon li:last-child {
padding-right: 0;
}
ul.social_icon li a {
color: #fff;
display: inline-block;
text-align: center;
line-height: 33px;
font-size: 28px;
font-weight: bold;
}
ul.social_icon li a:hover {
color: #ff0000;
transition: ease-in all 0.7s;
}
.ente {
background: #dbdada;
color: #fff;
border: inherit;
padding: 0 15px;
height: 62px;
width: 100%;
font-size: 17px;
}
.subs_btn {
max-width: 127px;
display: inline-block;
background: #ff0000;
height: 59px;
width: 100%;
color: #cecdcd;
font-size: 17px;
text-transform: uppercase;
font-weight: normal;
transition: ease-in all 0.5s;
margin-top: 20px;
}
.subs_btn:hover {
background: #9a145b;
transition: ease-in all 0.5s;
}
.copyright {
background: #ffffff;
margin-top: 50px;
}
.copyright p {
color: #1d1c1c;
padding: 20px 0px;
}
.copyright a {
color: #1d1c1c;
}
.copyright a:hover {
color: #7f16ca;
}
/** end footer **/
/*- - ener page css--*/
.inner_page header {
box-shadow: 0 -3px 12px 0px #a540e6;
position: inherit;
background: #8f100a;
}
.inner_page .about {
margin:80px 0 190px 0;
}
.inner_page .contact {
padding-bottom:80px;
}
.inner_page .footer {
margin-top: 110px;
}
@@ -0,0 +1,18 @@
html {
font-size: 14px;
}
@media (min-width: 768px) {
html {
font-size: 16px;
}
}
html {
position: relative;
min-height: 100%;
}
body {
margin-bottom: 60px;
}

Some files were not shown because too many files have changed in this diff Show More