Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .env.example

This file was deleted.

128 changes: 125 additions & 3 deletions package-lock.json

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

4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,16 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"@reduxjs/toolkit": "^1.7.1",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"axios": "^0.24.0",
"dotenv": "^15.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-loader-spinner": "^5.1.0",
"react-redux": "^7.2.6",
"react-scripts": "5.0.0",
"web-vitals": "^2.1.3"
},
Expand Down
36 changes: 25 additions & 11 deletions src/App.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
.app-container {
background-color: rgba(38, 1, 84, 0.933);
display: flex;
padding: 3em;
color: rgba(255, 255, 255, 0.775)
}

.profile-container {
Expand All @@ -10,7 +12,7 @@
/* NAVBAR */

.navbar {
background-color: rgba(0, 0,0, .8);
background-color: rgb(82, 0, 140);
padding: 10px;
height: 60px;
}
Expand Down Expand Up @@ -40,7 +42,7 @@
.profile-avatar {
width: 70%;
height: auto;
border: 7px solid rgba(0, 0,0, .3);
border: 7px solid rgba(119, 0, 255, 0.72);
border-radius: 50%;
object-fit: cover;
}
Expand Down Expand Up @@ -76,6 +78,7 @@
display: flex;
align-items: center;
gap: 10px;
fill :rgb(169, 94, 255)
}

.profile-info-icon {
Expand Down Expand Up @@ -103,12 +106,19 @@
}

.single-repository-container {
border:solid 1px rgba(0, 0,0, .1);
border:solid 1px rgba(91, 21, 141, 0.953);
background-color: rgb(40, 9, 75);
border-radius: 10px;
height: 200px;
width: 49%;
}

div .single-repository-container#container:hover {
border-radius: 2.4rem;
border:solid 1px rgb(169, 94, 255);
transition: .35s;
}

.single-repository-content {
padding: 10px 25px 20px 25px;
}
Expand All @@ -120,7 +130,7 @@
}

.single-repository-name {
color:royalblue;
color:rgb(169, 94, 255);
font-size: 20px;
cursor: pointer;
}
Expand All @@ -130,9 +140,9 @@
}

.single-repository-visibility-badge {
border: 1px solid rgba(0, 0,0, .3);
color: rgba(0, 0,0, .6);
background-color: transparent;
border: 1px solid rgb(169, 94, 255);
color: rgb(169, 94, 255);
background-color: rgba(52, 36, 94, 0.357);
border-radius: 15px;
padding: 4px 10px 7px 10px;
align-items: center;
Expand All @@ -158,6 +168,10 @@
gap: 5px;
}

.single-repository-info-item svg {
fill: rgb(169, 94, 255);
}

/* Repositories list navigation buttons */

.repositoies-list-navigation-buttons-container {
Expand All @@ -171,9 +185,9 @@

.repositoies-list-navigation-button {
text-align: center;
color: rgba(0, 0,0, .3);
border: 1px solid rgba(0, 0,0, .3);
background-color: white;
color: rgb(169, 94, 255);
border: 1px solid rgb(169, 94, 255);
background-color: transparent;
border-radius: 3px;
width: 30px;
height: 40px;
Expand All @@ -184,6 +198,6 @@
}

.repositoies-list-navigation-button:hover {
background-color: rgba(0, 0,0, .1);
background-color: rgba(0, 0, 0, 0.2);
transition: .3s;
}
1 change: 1 addition & 0 deletions src/App.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import "./App.css";


// Components
import RepositoriesList from "./components/repositories/RepositoriesList";
import Profile from "./components/profile/Profile";
Expand Down
Loading