Skip to content

Commit

Permalink
Merge pull request #7 from bartczak-pa/dev
Browse files Browse the repository at this point in the history
Added portfolio template and app
  • Loading branch information
bartczak-pa authored Jun 4, 2024
2 parents ab0e0b6 + 27a5ba0 commit 702d467
Show file tree
Hide file tree
Showing 47 changed files with 5,227 additions and 111 deletions.
3 changes: 3 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .idea/runConfigurations/migrate.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.
1 change: 1 addition & 0 deletions bartczak_tech/portfolio/admin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Register your models here.
6 changes: 6 additions & 0 deletions bartczak_tech/portfolio/apps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from django.apps import AppConfig


class PortfolioConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "bartczak_tech.portfolio"
Empty file.
1 change: 1 addition & 0 deletions bartczak_tech/portfolio/models.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Create your models here.
1 change: 1 addition & 0 deletions bartczak_tech/portfolio/tests.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Create your tests here.
1 change: 1 addition & 0 deletions bartczak_tech/portfolio/views.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Create your views here.
1 change: 1 addition & 0 deletions bartczak_tech/static/css/aos.css

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions bartczak_tech/static/css/bootstrap.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions bartczak_tech/static/css/line-awesome.min.css

Large diffs are not rendered by default.

13 changes: 0 additions & 13 deletions bartczak_tech/static/css/project.css

This file was deleted.

201 changes: 201 additions & 0 deletions bartczak_tech/static/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,201 @@
@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;500;600;700&display=swap');

:root {
--color-body: #b6cbce;
--color-heading: #eef3db;
--color-base: #033f47;
--color-base2: #022a30;
--color-brand: #e0f780;
--color-brand2: #deff58;
--sidbar-width: 240px;
--font-base: "Bai Jamjuree";
}

body {
background-color: var(--color-base2);
color: var(--color-body);
font-family: var(--font-base), sans-serif;
}

h1,h2,h3,h4,h5,h6 {
color: var(--color-heading);
font-weight: 700;
}

a {
text-decoration: none;
color: var(--color-body);
transition: all 0.4s ease;
}

a:hover {
color: var(--color-brand);
}

img {
width: 100%;
}

.text-brand {
color: var(--color-brand);
}

.bg-base {
background-color: var(--color-base);
}

.full-height {
min-height: 100vh;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
padding-top: 80px;
padding-bottom: 80px;
border-bottom: 2px solid rgba(255,255,255, 0.1);
}

.shadow-effect {
transition: all 0.5s;
}

.shadow-effect:hover {
box-shadow: -6px 6px 0 0 var(--color-brand);
}

.iconbox {
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
font-size: 32px;
background-color: var(--color-brand);
color: var(--color-base);
}

/* NAVBAR */
.navbar {
background-color: var(--color-base);
}

.navbar .nav-link {
font-weight: 700;
text-transform: uppercase;
color: #fff;
}

.navbar .nav-link:hover {
color: var(--color-brand);
}

.navbar .nav-link.active {
color: var(--color-brand);
}

@media (min-width: 992px) {
.navbar {
min-height: 100vh;
width: var(--sidbar-width);
background: linear-gradient(rgba(3, 63, 71, 0.8), rgba(3, 63, 71, 0.8)), url(../images/sidebar-img.jpg);
background-size: cover;
background-position: center;
}

.navbar-brand img {
border: 8px solid var(--color-brand);
}

/* CONTENT WRAPPER */
#content-wrapper {
padding-left: var(--sidbar-width);
}
}

/* BTN */
.btn {
padding: 12px 28px;
font-weight: 700;
}

.btn-brand {
background-color: var(--color-brand);
border-color: var(--color-brand);
color: var(--color-base);
}

.btn-brand:hover,
.btn-brand:focus {
background-color: var(--color-brand2);
color: var(--color-base);
border-color: var(--color-brand2);
}

.link-custom {
font-weight: 700;
position: relative;
}

.link-custom::after {
content: "";
width: 0%;
height: 2px;
background-color: var(--color-brand);
position: absolute;
left: 0;
top: 110%;
transition: all 0.4s;
}

.link-custom:hover::after {
width: 100%;
}

/* CARD */
.card-custom .card-custom-image {
overflow: hidden;
}

.card-custom .card-custom-image img {
transition: all 0.4s ease;
}

.card-custom:hover .card-custom-image img {
transform: scale(1.1);
}

/* CONTACT */
#contact .form-control {
background-color: var(--color-base);
border-color: var(--color-base);
color: var(--color-body);
}

#contact .form-control:focus {
border-color: var(--color-brand);
box-shadow: none;
}

#contact .form-control::placeholder {
color: var(--color-body);
}

#contact input.form-control {
height: 44px;
}

/* SOCIAL ICONS */
.social-icons {

}

.social-icons a {
width: 40px;
height: 40px;
display: inline-flex;
align-items: center;
justify-content: center;
background-color: var(--color-base);
border-radius: 100px;
font-size: 24px;
}
Binary file added bartczak_tech/static/fonts/la-brands-400.eot
Binary file not shown.
1,313 changes: 1,313 additions & 0 deletions bartczak_tech/static/fonts/la-brands-400.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bartczak_tech/static/fonts/la-brands-400.ttf
Binary file not shown.
Binary file added bartczak_tech/static/fonts/la-brands-400.woff
Binary file not shown.
Binary file added bartczak_tech/static/fonts/la-brands-400.woff2
Binary file not shown.
Binary file added bartczak_tech/static/fonts/la-regular-400.eot
Binary file not shown.
Loading

0 comments on commit 702d467

Please sign in to comment.