-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added new feature for projects in which they can have different techn…
…ologies related to them
- Loading branch information
1 parent
70ff796
commit 2597ba3
Showing
6 changed files
with
58 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,26 @@ | ||
.project { | ||
background-color: #16192A; | ||
border: none; | ||
margin-bottom: 3vh; | ||
width: 24rem; | ||
background: none; | ||
background-color: #16192A; | ||
} | ||
|
||
#container { | ||
margin-top: 5vh; | ||
margin-bottom: 5vh; | ||
} | ||
|
||
.card-project-body { | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: stretch; | ||
flex-direction: column; | ||
} | ||
|
||
.pimage { | ||
border-radius: 25%; | ||
} | ||
|
||
.footer { | ||
border: none; | ||
} | ||
|
||
.plink { | ||
width: 100%; | ||
} | ||
|
||
.tech { | ||
color: #0F111D; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Generated by Django 4.0.4 on 2022-06-20 20:13 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('core', '0003_remove_technology_updated'), | ||
('portfolio', '0002_auto_20190116_0701'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='project', | ||
name='technologies', | ||
field=models.ManyToManyField(to='core.technology', verbose_name='Technologies'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters