Add files via upload

This commit is contained in:
Riley Bautista 2025-03-02 08:12:44 -05:00 committed by GitHub
commit e6b00b75a7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 183 additions and 0 deletions

File diff suppressed because one or more lines are too long

6
assets/bootstrap/js/bootstrap.min.js vendored Normal file

File diff suppressed because one or more lines are too long

View file

@ -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%;
}

View file

@ -0,0 +1,26 @@
@font-face {
font-family: 'Phantom Sans 0.7';
src: url(../../assets/fonts/Phantom%20Sans%200.7-ef5d87bd1397c266fea26dbc341133d0.woff2) format('woff2'),
url(../../assets/fonts/Phantom%20Sans%200.7-484ce4ee4d952e977efb10000ae20a8e.woff) format('woff');
font-weight: normal;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Phantom Sans 0.7';
src: url(../../assets/fonts/Phantom%20Sans%200.7-d81cc9383b9c994ab9c85f541a6f880e.woff2) format('woff2'),
url(../../assets/fonts/Phantom%20Sans%200.7-f4ddb2485a809d6cb07a38dae66ac153.woff) format('woff');
font-weight: normal;
font-style: italic;
font-display: swap;
}
@font-face {
font-family: 'Phantom Sans 0.7';
src: url(../../assets/fonts/Phantom%20Sans%200.7-85ea91f43e8b4ee4d28acd9602e4d8ba.woff2) format('woff2'),
url(../../assets/fonts/Phantom%20Sans%200.7-e98e7229c8848f2355676d82d047b05d.woff) format('woff');
font-weight: bold;
font-style: normal;
font-display: swap;
}

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 41 KiB

38
index.html Normal file
View file

@ -0,0 +1,38 @@
<!DOCTYPE html>
<html data-bs-theme="light" lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>Untitled</title>
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/Phantom%20Sans%200.7.css">
<link rel="stylesheet" href="assets/css/Navbar-Right-Links-icons.css">
</head>
<body style="background: rgb(175,141,103);">
<nav class="navbar navbar-expand-md bg-body py-3">
<div class="container"><a class="navbar-brand d-flex align-items-center" href="#"><img src="assets/img/wordmark%20(3).svg" style="height: 50px;"><span style="font-family: 'Phantom Sans 0.7';font-weight: bold;color: rgb(36,46,63);">Projects</span></a><button data-bs-toggle="collapse" class="navbar-toggler" data-bs-target="#navcol-2"><span class="visually-hidden">Toggle navigation</span><span class="navbar-toggler-icon"></span></button>
<div class="collapse navbar-collapse" id="navcol-2">
<ul class="navbar-nav ms-auto">
<li class="nav-item"></li>
</ul>
</div>
</div>
</nav>
<div class="container py-4 py-xl-5">
<div class="row gy-4 row-cols-1 row-cols-md-2 row-cols-xl-3">
<div class="col-lg-4">
<div class="card">
<div class="card-body p-4" style="font-family: 'Phantom Sans 0.7';background: rgba(175,141,103,0.65);border-width: 3px;border-color: rgb(159,123,82);">
<h4 class="card-title" style="font-weight: bold;">TITLE</h4>
<p class="card-text">DESCRIPTION</p><button class="btn btn-primary" type="button" style="background: rgb(157,120,79);border-width: 0px;">Button</button>
</div>
</div>
</div>
</div>
</div>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
</body>
</html>