Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve Projects' languages div #399

Open
wants to merge 1 commit into
base: source
Choose a base branch
from
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,5 @@ build
npm-debug.log
package-lock.json
yarn-error.log
.yarn
.yarnrc.yml
23 changes: 19 additions & 4 deletions src/components/ProjectList/css/project-cards.css
Original file line number Diff line number Diff line change
@@ -1,22 +1,26 @@
* {
/* border: 1px solid red; */
}

.Card-Header {
position: relative;
font-weight: bold;
background: white;
padding: 2%;
line-height: 18px;
}

.Project-Logo {
width: 45%;
height: auto;
margin-top: 5%;
}

.Card-Body {
position: relative;
background: white;
}

.Card-Container {
overflow: hidden;
width: 16%;
Expand All @@ -28,10 +32,12 @@
transition: box-shadow 0.1s ease-in-out;
background-color: #fff;
}

@media (max-width: 700px) {
.Card-Container {
width: 100%;
}

.Card-Real-Link {
width: 100%;
}
Expand All @@ -40,29 +46,35 @@
.Card-Container:hover {
box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 10px, rgba(0, 0, 0, 0.23) 0px 3px 10px;
}

.Card-Real-Link:hover {
text-decoration: none;
color: black;
}

.Card-Real-Link:visited {
text-decoration: none;
color: black;
}

.Card-Real-Link:link {
display: flex;
flex-direction: column;
text-decoration: none;
color: black;
margin: 0 auto;
}

.Card-Real-Link:active {
text-decoration: none;
color: black;
}

.Card-Description {
position: relative;
padding: 5%;
}

.Card-Link {
position: relative;
padding: 15px;
Expand All @@ -72,30 +84,33 @@
margin-top: auto;
border-top: rgba(0, 0, 0, 0.12) 1px solid;
}

.Card-Link:hover {
color: whitesmoke;
background: #0f3cef;
}

.Card-Title {
margin-top: 6%;
height: 10%;
font-size: 20px;
}

.Card-Link-Style {
margin-left: 10%;
}

.Card-Tag div {
display: inline-block;
background-color: #c8e1f9;
padding: 5px;
border-radius: 12px;
padding: 5px 7px;
border-radius: 8px;
margin: 10px 10px;
vertical-align: middle;
}

.Card-Tag p {
margin: 3px 0;
font-size: 13px;
font-size: 13.6px;
text-transform: capitalize;
}
}
Loading