default layout
This commit is contained in:
parent
4058b5eaa4
commit
87ab6a874e
@ -1,52 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>@ViewData["Title"] - EnotaryoPH.Web</title>
|
||||
<script type="importmap"></script>
|
||||
<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="~/EnotaryoPH.Web.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">
|
||||
<a class="navbar-brand" asp-area="" asp-page="/Index">EnotaryoPH.Web</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-page="/Index">Home</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-dark" asp-area="" asp-page="/Privacy">Privacy</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
<div class="container">
|
||||
<main role="main" class="pb-3">
|
||||
@RenderBody()
|
||||
</main>
|
||||
</div>
|
||||
<html data-bs-theme="light" lang="en">
|
||||
|
||||
<footer class="border-top footer text-muted">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
|
||||
<title>@ViewData["Title"] | E-Notaryo PH</title>
|
||||
<link rel="stylesheet" href="/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="/css/Source%20Sans%20Pro.css">
|
||||
<link rel="stylesheet" href="/css/Articles-Cards-images.css">
|
||||
<link rel="stylesheet" href="/css/Bootstrap-4-Calendar-No-Custom-Code.css">
|
||||
<link rel="stylesheet" href="/css/enotaryo.css">
|
||||
<link rel="stylesheet" href="/css/enotaryo.compiled.css">
|
||||
<link rel="stylesheet" href="/css/EnotaryoPH-Navbar.css">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/baguettebox.js/1.11.1/baguetteBox.min.css">
|
||||
<link rel="stylesheet" href="/css/Lightbox-Gallery-baguetteBox.min.css">
|
||||
<link rel="stylesheet" href="/css/Navbar-Right-Links-Dark.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav class="navbar navbar-expand-md bg-dark py-3 navbar-dark">
|
||||
<div class="container">
|
||||
© 2024 - EnotaryoPH.Web - <a asp-area="" asp-page="/Privacy">Privacy</a>
|
||||
<a class="navbar-brand d-flex align-items-center" href="/">
|
||||
<span class="bs-icon-sm text-white d-flex justify-content-center align-items-center me-2 bs-icon">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-pen">
|
||||
<path d="m13.498.795.149-.149a1.207 1.207 0 1 1 1.707 1.708l-.149.148a1.5 1.5 0 0 1-.059 2.059L4.854 14.854a.5.5 0 0 1-.233.131l-4 1a.5.5 0 0 1-.606-.606l1-4a.5.5 0 0 1 .131-.232l9.642-9.642a.5.5 0 0 0-.642.056L6.854 4.854a.5.5 0 1 1-.708-.708L9.44.854A1.5 1.5 0 0 1 11.5.796a1.5 1.5 0 0 1 1.998-.001m-.644.766a.5.5 0 0 0-.707 0L1.95 11.756l-.764 3.057 3.057-.764L14.44 3.854a.5.5 0 0 0 0-.708l-1.585-1.585z"></path>
|
||||
</svg>
|
||||
</span><span>Enotaryo</span>
|
||||
</a><button data-bs-toggle="collapse" class="navbar-toggler" data-bs-target="#collapse-button"><span class="visually-hidden">Toggle navigation</span><span class="navbar-toggler-icon"></span></button>
|
||||
<div class="collapse navbar-collapse" id="#collapse-button">
|
||||
<ul class="navbar-nav ms-auto">
|
||||
<li class="nav-item"><a class="nav-link active" href="/">Home</a></li>
|
||||
</ul>
|
||||
<a class="btn btn-primary ms-md-2" role="button" href="/Login">Login</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
@RenderBody()
|
||||
|
||||
<footer class="text-center">
|
||||
<div class="container-fluid text-muted py-4 py-lg-5">
|
||||
<ul class="list-inline">
|
||||
<li class="list-inline-item me-4"><a class="link-secondary" href="blank.html">Privacy</a></li>
|
||||
<li class="list-inline-item me-4"><a class="link-secondary" href="blank.html">FAQ</a></li>
|
||||
<li class="list-inline-item"><a class="link-secondary" href="contactus.html">Contact Us</a></li>
|
||||
</ul>
|
||||
<p class="mb-0">Copyright © 2024 Enotaryo</p>
|
||||
</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>
|
||||
|
||||
<script src="/lib/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
|
||||
<script src="/js/bs-init.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/baguettebox.js/1.11.1/baguetteBox.min.js"></script>
|
||||
<script src="/js/Lightbox-Gallery-baguetteBox.min.js"></script>
|
||||
<script src="/js/Lightbox-Gallery.js"></script>
|
||||
@await RenderSectionAsync("Scripts", required: false)
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
||||
|
||||
|
||||
|
@ -26,6 +26,7 @@ a {
|
||||
.border-top {
|
||||
border-top: 1px solid #e5e5e5;
|
||||
}
|
||||
|
||||
.border-bottom {
|
||||
border-bottom: 1px solid #e5e5e5;
|
||||
}
|
||||
@ -46,3 +47,7 @@ button.accept-policy {
|
||||
white-space: nowrap;
|
||||
line-height: 60px;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: red;
|
||||
}
|
@ -0,0 +1,4 @@
|
||||
.fit-cover {
|
||||
object-fit: cover;
|
||||
}
|
||||
|
@ -0,0 +1,75 @@
|
||||
.calendar {
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.month {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
.month {
|
||||
font-size: 3.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
.calendar ol li {
|
||||
float: left;
|
||||
width: 14.28571%;
|
||||
}
|
||||
|
||||
.calendar .day-names {
|
||||
border-bottom: 1px solid #eee;
|
||||
}
|
||||
|
||||
.calendar .day-names li {
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.calendar .days li {
|
||||
border: 1px solid #eee;
|
||||
min-height: 5rem;
|
||||
}
|
||||
|
||||
.calendar .days li .date {
|
||||
margin: 0.5rem 0;
|
||||
}
|
||||
|
||||
.calendar .days li .event {
|
||||
font-size: 0.75rem;
|
||||
padding: 0.4rem;
|
||||
color: white;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
border-radius: 4rem;
|
||||
margin-bottom: 1px;
|
||||
}
|
||||
|
||||
.calendar .days li .event.span-2 {
|
||||
width: 200%;
|
||||
}
|
||||
|
||||
.calendar .days li .event.begin {
|
||||
border-radius: 1rem 0 0 1rem;
|
||||
}
|
||||
|
||||
.calendar .days li .event.end {
|
||||
border-radius: 0 1rem 1rem 0;
|
||||
}
|
||||
|
||||
.calendar .days li .event.clear {
|
||||
background: none;
|
||||
}
|
||||
|
||||
.calendar .days li.outside .date {
|
||||
color: #ddd;
|
||||
}
|
||||
|
||||
.date span {
|
||||
margin-left: 3px;
|
||||
}
|
||||
|
||||
.date {
|
||||
margin-top: 0px !important;
|
||||
}
|
||||
|
16
EnotaryoPH/EnotaryoPH.Web/wwwroot/css/EnotaryoPH-Navbar.css
Normal file
16
EnotaryoPH/EnotaryoPH.Web/wwwroot/css/EnotaryoPH-Navbar.css
Normal file
@ -0,0 +1,16 @@
|
||||
.bs-icon {
|
||||
--bs-icon-size: .75rem;
|
||||
display: flex;
|
||||
flex-shrink: 0;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
font-size: var(--bs-icon-size);
|
||||
width: calc(var(--bs-icon-size) * 2);
|
||||
height: calc(var(--bs-icon-size) * 2);
|
||||
color: var(--bs-primary);
|
||||
}
|
||||
|
||||
.bs-icon-sm {
|
||||
--bs-icon-size: 1rem;
|
||||
}
|
||||
|
208
EnotaryoPH/EnotaryoPH.Web/wwwroot/css/Lightbox-Gallery-baguetteBox.min.css
vendored
Normal file
208
EnotaryoPH/EnotaryoPH.Web/wwwroot/css/Lightbox-Gallery-baguetteBox.min.css
vendored
Normal file
@ -0,0 +1,208 @@
|
||||
/* !
|
||||
* baguetteBox.js
|
||||
* @author feimosi
|
||||
* @version 1.11.1
|
||||
* @url https://github.com/feimosi/baguetteBox.js */
|
||||
|
||||
#baguetteBox-overlay {
|
||||
display: none;
|
||||
opacity: 0;
|
||||
position: fixed;
|
||||
overflow: hidden;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 1000000;
|
||||
background-color: #222;
|
||||
background-color: rgba(0,0,0,.8);
|
||||
-webkit-transition: opacity .5s ease;
|
||||
transition: opacity .5s ease;
|
||||
}
|
||||
|
||||
#baguetteBox-overlay.visible {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
#baguetteBox-overlay .full-image {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#baguetteBox-overlay .full-image figure {
|
||||
display: inline;
|
||||
margin: 0;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
#baguetteBox-overlay .full-image img {
|
||||
display: inline-block;
|
||||
width: auto;
|
||||
height: auto;
|
||||
max-height: 100%;
|
||||
max-width: 100%;
|
||||
vertical-align: middle;
|
||||
-webkit-box-shadow: 0 0 8px rgba(0,0,0,.6);
|
||||
-moz-box-shadow: 0 0 8px rgba(0,0,0,.6);
|
||||
box-shadow: 0 0 8px rgba(0,0,0,.6);
|
||||
}
|
||||
|
||||
#baguetteBox-overlay .full-image figcaption {
|
||||
display: block;
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
line-height: 1.8;
|
||||
white-space: normal;
|
||||
color: #ccc;
|
||||
background-color: #000;
|
||||
background-color: rgba(0,0,0,.6);
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
#baguetteBox-overlay .full-image:before {
|
||||
content: "";
|
||||
display: inline-block;
|
||||
height: 50%;
|
||||
width: 1px;
|
||||
margin-right: -1px;
|
||||
}
|
||||
|
||||
#baguetteBox-slider {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
white-space: nowrap;
|
||||
-webkit-transition: left .4s ease,-webkit-transform .4s ease;
|
||||
transition: left .4s ease,-webkit-transform .4s ease;
|
||||
transition: left .4s ease,transform .4s ease;
|
||||
transition: left .4s ease,transform .4s ease,-webkit-transform .4s ease,-moz-transform .4s ease;
|
||||
}
|
||||
|
||||
#baguetteBox-slider.bounce-from-right {
|
||||
-webkit-animation: bounceFromRight .4s ease-out;
|
||||
animation: bounceFromRight .4s ease-out;
|
||||
}
|
||||
|
||||
#baguetteBox-slider.bounce-from-left {
|
||||
-webkit-animation: bounceFromLeft .4s ease-out;
|
||||
animation: bounceFromLeft .4s ease-out;
|
||||
}
|
||||
|
||||
@keyframes bounceFromRight {
|
||||
0%, 100% {
|
||||
margin-left: 0;
|
||||
}
|
||||
50% {
|
||||
margin-left: -30px;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes bounceFromLeft {
|
||||
0%, 100% {
|
||||
margin-left: 0;
|
||||
}
|
||||
50% {
|
||||
margin-left: 30px;
|
||||
}
|
||||
}
|
||||
|
||||
.baguetteBox-button#next-button, .baguetteBox-button#previous-button {
|
||||
top: 50%;
|
||||
top: calc(50% - 30px);
|
||||
width: 44px;
|
||||
height: 60px;
|
||||
}
|
||||
|
||||
.baguetteBox-button {
|
||||
position: absolute;
|
||||
cursor: pointer;
|
||||
outline: 0;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border: 0;
|
||||
-moz-border-radius: 15%;
|
||||
border-radius: 15%;
|
||||
background-color: #323232;
|
||||
background-color: rgba(50,50,50,.5);
|
||||
color: #ddd;
|
||||
font: 1.6em sans-serif;
|
||||
-webkit-transition: background-color .4s ease;
|
||||
transition: background-color .4s ease;
|
||||
}
|
||||
|
||||
.baguetteBox-button:focus, .baguetteBox-button:hover {
|
||||
background-color: rgba(50,50,50,.9);
|
||||
}
|
||||
|
||||
.baguetteBox-button#next-button {
|
||||
right: 2%;
|
||||
}
|
||||
|
||||
.baguetteBox-button#previous-button {
|
||||
left: 2%;
|
||||
}
|
||||
|
||||
.baguetteBox-button#close-button {
|
||||
top: 20px;
|
||||
right: 2%;
|
||||
right: calc(2% + 6px);
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
}
|
||||
|
||||
.baguetteBox-button svg {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.baguetteBox-spinner {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
margin-top: -20px;
|
||||
margin-left: -20px;
|
||||
}
|
||||
|
||||
.baguetteBox-double-bounce1, .baguetteBox-double-bounce2 {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
-moz-border-radius: 50%;
|
||||
border-radius: 50%;
|
||||
background-color: #fff;
|
||||
opacity: .6;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
-webkit-animation: bounce 2s infinite ease-in-out;
|
||||
animation: bounce 2s infinite ease-in-out;
|
||||
}
|
||||
|
||||
.baguetteBox-double-bounce2 {
|
||||
-webkit-animation-delay: -1s;
|
||||
animation-delay: -1s;
|
||||
}
|
||||
|
||||
@keyframes bounce {
|
||||
0%, 100% {
|
||||
-webkit-transform: scale(0);
|
||||
-moz-transform: scale(0);
|
||||
transform: scale(0);
|
||||
}
|
||||
50% {
|
||||
-webkit-transform: scale(1);
|
||||
-moz-transform: scale(1);
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
|
@ -0,0 +1,57 @@
|
||||
.bs-icon {
|
||||
--bs-icon-size: .75rem;
|
||||
display: flex;
|
||||
flex-shrink: 0;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
font-size: var(--bs-icon-size);
|
||||
width: calc(var(--bs-icon-size) * 2);
|
||||
height: calc(var(--bs-icon-size) * 2);
|
||||
color: var(--bs-primary);
|
||||
}
|
||||
|
||||
.bs-icon-xs {
|
||||
--bs-icon-size: 1rem;
|
||||
width: calc(var(--bs-icon-size) * 1.5);
|
||||
height: calc(var(--bs-icon-size) * 1.5);
|
||||
}
|
||||
|
||||
.bs-icon-sm {
|
||||
--bs-icon-size: 1rem;
|
||||
}
|
||||
|
||||
.bs-icon-md {
|
||||
--bs-icon-size: 1.5rem;
|
||||
}
|
||||
|
||||
.bs-icon-lg {
|
||||
--bs-icon-size: 2rem;
|
||||
}
|
||||
|
||||
.bs-icon-xl {
|
||||
--bs-icon-size: 2.5rem;
|
||||
}
|
||||
|
||||
.bs-icon.bs-icon-primary {
|
||||
color: var(--bs-white);
|
||||
background: var(--bs-primary);
|
||||
}
|
||||
|
||||
.bs-icon.bs-icon-primary-light {
|
||||
color: var(--bs-primary);
|
||||
background: rgba(var(--bs-primary-rgb), .2);
|
||||
}
|
||||
|
||||
.bs-icon.bs-icon-semi-white {
|
||||
color: var(--bs-primary);
|
||||
background: rgba(255, 255, 255, .5);
|
||||
}
|
||||
|
||||
.bs-icon.bs-icon-rounded {
|
||||
border-radius: .5rem;
|
||||
}
|
||||
|
||||
.bs-icon.bs-icon-circle {
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
188
EnotaryoPH/EnotaryoPH.Web/wwwroot/css/Source Sans Pro.css
Normal file
188
EnotaryoPH/EnotaryoPH.Web/wwwroot/css/Source Sans Pro.css
Normal file
@ -0,0 +1,188 @@
|
||||
@font-face {
|
||||
font-family: 'Source Sans Pro';
|
||||
src: url(/fonts/Source%20Sans%20Pro-2e78645534830fa5361ef931dc1524b1.woff2) format('woff2');
|
||||
font-weight: 300;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Source Sans Pro';
|
||||
src: url(/fonts/Source%20Sans%20Pro-596f59b6ad85e078549dcc737193c634.woff2) format('woff2');
|
||||
font-weight: 300;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Source Sans Pro';
|
||||
src: url(/fonts/Source%20Sans%20Pro-56274b455a61ee6a89867d74d3e7fdee.woff2) format('woff2');
|
||||
font-weight: 300;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
unicode-range: U+1F00-1FFF;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Source Sans Pro';
|
||||
src: url(/fonts/Source%20Sans%20Pro-e87cb6de7e52cf9233036f57ce0f5b8c.woff2) format('woff2');
|
||||
font-weight: 300;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Source Sans Pro';
|
||||
src: url(/fonts/Source%20Sans%20Pro-7f3e500323bd43d45317b372fa0edce7.woff2) format('woff2');
|
||||
font-weight: 300;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Source Sans Pro';
|
||||
src: url(/fonts/Source%20Sans%20Pro-ab18d0ff7a63e279b2e6e533ce8d25f2.woff2) format('woff2');
|
||||
font-weight: 300;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Source Sans Pro';
|
||||
src: url(/fonts/Source%20Sans%20Pro-7cc80d9095b68cc859a5cb2904d3b531.woff2) format('woff2');
|
||||
font-weight: 300;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Source Sans Pro';
|
||||
src: url(/fonts/Source%20Sans%20Pro-02f6c611a0b20cfed0460961bd848f53.woff2) format('woff2');
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Source Sans Pro';
|
||||
src: url(/fonts/Source%20Sans%20Pro-efe0857669ff82019ec2a05844191343.woff2) format('woff2');
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Source Sans Pro';
|
||||
src: url(/fonts/Source%20Sans%20Pro-3fe1f947987b64170af618ac45bd8ba6.woff2) format('woff2');
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
unicode-range: U+1F00-1FFF;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Source Sans Pro';
|
||||
src: url(/fonts/Source%20Sans%20Pro-f125b84359c315f784c3f1ab19840dba.woff2) format('woff2');
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Source Sans Pro';
|
||||
src: url(/fonts/Source%20Sans%20Pro-be6ad07951b16d07ec96bbabc9fc228b.woff2) format('woff2');
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Source Sans Pro';
|
||||
src: url(/fonts/Source%20Sans%20Pro-9d32c7425d488c7deb25b81dd3ac4991.woff2) format('woff2');
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Source Sans Pro';
|
||||
src: url(/fonts/Source%20Sans%20Pro-14e45a5c291394f5223ada25527b21cd.woff2) format('woff2');
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Source Sans Pro';
|
||||
src: url(/fonts/Source%20Sans%20Pro-300433d1d22acc1d4f3fe0b380859481.woff2) format('woff2');
|
||||
font-weight: 700;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Source Sans Pro';
|
||||
src: url(/fonts/Source%20Sans%20Pro-8b2ac22422291729d534a68d2e2edad8.woff2) format('woff2');
|
||||
font-weight: 700;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Source Sans Pro';
|
||||
src: url(/fonts/Source%20Sans%20Pro-d4d87c77893885a23b430d4a4fcb56aa.woff2) format('woff2');
|
||||
font-weight: 700;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
unicode-range: U+1F00-1FFF;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Source Sans Pro';
|
||||
src: url(/fonts/Source%20Sans%20Pro-7f39406aab2363ca638fb27274cc184c.woff2) format('woff2');
|
||||
font-weight: 700;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Source Sans Pro';
|
||||
src: url(/fonts/Source%20Sans%20Pro-74cfc3848cd79ef3ed117f76f1576dbf.woff2) format('woff2');
|
||||
font-weight: 700;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Source Sans Pro';
|
||||
src: url(/fonts/Source%20Sans%20Pro-7fa6e9811d4641f629940d9aa77c43f2.woff2) format('woff2');
|
||||
font-weight: 700;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Source Sans Pro';
|
||||
src: url(/fonts/Source%20Sans%20Pro-3c226bcc2fa319533d13eb9b76130822.woff2) format('woff2');
|
||||
font-weight: 700;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
12
EnotaryoPH/EnotaryoPH.Web/wwwroot/css/bootstrap.min.css
vendored
Normal file
12
EnotaryoPH/EnotaryoPH.Web/wwwroot/css/bootstrap.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
118
EnotaryoPH/EnotaryoPH.Web/wwwroot/css/enotaryo.css
Normal file
118
EnotaryoPH/EnotaryoPH.Web/wwwroot/css/enotaryo.css
Normal file
@ -0,0 +1,118 @@
|
||||
.iconClass {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.iconClass .badge, .iconClass .badge1 {
|
||||
position: absolute;
|
||||
top: -5px;
|
||||
right: -5px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.sidemenu__menuitem:not(.sidemenu__menuitem--state-active):hover {
|
||||
background-color: var(--bs-primary-bg-subtle);
|
||||
}
|
||||
|
||||
.navbar.authenticated #logout {
|
||||
display: block;
|
||||
}
|
||||
|
||||
a span.sidemenu__menuitem__text {
|
||||
color: black;
|
||||
}
|
||||
|
||||
.sidemenu__menuitem--state-active {
|
||||
background-color: var(--bs-primary-bg-subtle)!important;
|
||||
border-right: solid 4px var(--bs-primary);
|
||||
}
|
||||
|
||||
#transactionwizardnav li.nav-item:has(.nav-link.active) {
|
||||
background-color: var(--bs-dark);
|
||||
}
|
||||
|
||||
#transactionwizardnav .nav-link.active .step-text {
|
||||
color: var(--bs-white) !important;
|
||||
}
|
||||
|
||||
#transactionwizardnav {
|
||||
border-bottom: 2px solid var(--bs-body-color);
|
||||
}
|
||||
|
||||
#transactionwizardnav .nav-link:not(.active) .badge {
|
||||
background: var(--bs-dark);
|
||||
color: white !important;
|
||||
}
|
||||
|
||||
.navbar:not(.authenticated) #logout {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#transactionwizardnav .nav-link.active .badge {
|
||||
background: var(--bs-white);
|
||||
color: var(--bs-dark);
|
||||
}
|
||||
|
||||
.navbar.authenticated #login {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.participantcontrol .participantcontrol__link__deny__icon:hover {
|
||||
color: var(--bs-danger);
|
||||
}
|
||||
|
||||
.participantcontrol .participantcontrol__link__info__icon:hover {
|
||||
color: var(--bs-dark-text-emphasis);
|
||||
}
|
||||
|
||||
.participantcontrol__link:hover {
|
||||
background-color: var(--bs-dark-bg-subtle);
|
||||
}
|
||||
|
||||
.participantcontrol .participantcontrol__link__approve__icon:hover {
|
||||
color: var(--bs-success);
|
||||
}
|
||||
|
||||
.participantcontrol:has(.approved, .denied) .participantcontrol__action__initial {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.participantcontrol:has(.approved) .participantcontrol__action__approved {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.participantcontrol:has(.approved) .participantcontrol__action__denied {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.participantcontrol:has(.denied) .participantcontrol__action__approved {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.participantcontrol__action:not(.denied) .participantcontrol__action__denied {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.participantcontrol__action:not(.approved) .participantcontrol__action__approved {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
#transactionwizardnav .nav-link.active {
|
||||
background-color: var(--bs-dark);
|
||||
}
|
||||
|
||||
#vidcon {
|
||||
height: calc(100vh - 65px);
|
||||
}
|
||||
|
||||
.signatory {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.signatory:hover {
|
||||
background-color: var(--bs-primary-bg-subtle);
|
||||
}
|
||||
|
||||
.maxwidth-800 {
|
||||
max-width: 800px;
|
||||
}
|
||||
|
@ -1,31 +0,0 @@
|
||||
html {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
html {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
|
||||
box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
|
||||
}
|
||||
|
||||
html {
|
||||
position: relative;
|
||||
min-height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
|
||||
.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
|
||||
color: var(--bs-secondary-color);
|
||||
text-align: end;
|
||||
}
|
||||
|
||||
.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
|
||||
text-align: start;
|
||||
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
7
EnotaryoPH/EnotaryoPH.Web/wwwroot/js/Lightbox-Gallery-baguetteBox.min.js
vendored
Normal file
7
EnotaryoPH/EnotaryoPH.Web/wwwroot/js/Lightbox-Gallery-baguetteBox.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
3
EnotaryoPH/EnotaryoPH.Web/wwwroot/js/Lightbox-Gallery.js
Normal file
3
EnotaryoPH/EnotaryoPH.Web/wwwroot/js/Lightbox-Gallery.js
Normal file
@ -0,0 +1,3 @@
|
||||
if (document.querySelectorAll('[data-bss-baguettebox]').length > 0) {
|
||||
baguetteBox.run('[data-bss-baguettebox]', { animation: 'slideIn' });
|
||||
}
|
13
EnotaryoPH/EnotaryoPH.Web/wwwroot/js/bs-init.js
Normal file
13
EnotaryoPH/EnotaryoPH.Web/wwwroot/js/bs-init.js
Normal file
@ -0,0 +1,13 @@
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
|
||||
var tooltipTriggerList = [].slice.call(document.querySelectorAll('[data-bss-tooltip]'));
|
||||
var tooltipList = tooltipTriggerList.map(function (tooltipTriggerEl) {
|
||||
return new bootstrap.Tooltip(tooltipTriggerEl);
|
||||
})
|
||||
|
||||
var charts = document.querySelectorAll('[data-bss-chart]');
|
||||
|
||||
for (var chart of charts) {
|
||||
chart.chart = new Chart(chart, JSON.parse(chart.dataset.bssChart));
|
||||
}
|
||||
}, false);
|
Loading…
x
Reference in New Issue
Block a user