bravo68web-portfolio-nextjs/components/skillCard.styled.js

108 lines
1.9 KiB
JavaScript
Raw Normal View History

2022-01-18 09:50:39 +00:00
import styled from "styled-components";
export default styled.div`
2023-06-12 08:03:13 +00:00
padding: 8px;
display: inline-flex;
/* box-shadow: 10px 9px 0px -3px #fffefe; */
.card {
2023-06-13 05:07:09 +00:00
background-color: var(--color13);
2023-06-12 08:03:13 +00:00
padding: 15px;
width: 100%;
/* min-width: 225px; */
max-width: 225px;
2022-04-18 21:11:40 +00:00
2023-06-12 08:03:13 +00:00
/* max-width: 10.7em; */
height: auto;
border-radius: 5px;
transition: 0.1s;
:hover {
transform: scale(1.1);
}
box-shadow: 46px 35px 22px -2px rgba(0, 0, 0, 0.1);
@media (max-width: 901px) {
max-width: 175px;
}
}
.card-logo {
float: right;
background-color: #fff;
border-radius: 100px;
display: flex;
align-items: center;
}
.title {
font-size: 1.2rem;
font-weight: bold;
color: var(--color3);
}
.description {
font-size: 1rem;
color: var(--color4);
2023-11-27 14:36:33 +00:00
display: flex;
align-items: start;
justify-content: space-between;
/* gap: 6px; */
2023-06-12 08:03:13 +00:00
/* width: 225px; */
}
2023-11-27 14:36:33 +00:00
.value {
color: #ffff;
}
2023-06-12 08:03:13 +00:00
.topSongs {
display: flex;
flex-direction: column;
}
.topSongs__song {
display: flex;
align-items: center;
justify-content: flex-start;
2022-04-03 20:26:18 +00:00
2023-06-12 08:03:13 +00:00
/* padding-right: 5px; */
flex-direction: row;
/* margin-bottom: 10px; */
}
.topSongs__song__info {
display: flex;
margin-left: 10px;
/* align-items: center; */
flex-direction: column;
.topSongs__song__info__name {
font-size: 1rem;
2022-04-03 20:26:18 +00:00
2023-06-12 08:03:13 +00:00
font-weight: bold;
color: var(--color4);
}
.topSongs__song__info__artist {
font-size: 0.9rem;
2022-04-03 20:26:18 +00:00
2023-06-12 08:03:13 +00:00
color: var(--color3);
}
}
.bestScores__score__info__score__value {
display: flex;
flex-grow: 1;
}
.bestScores__score__info__name__artist {
font-size: 1rem;
color: var(--color4);
}
.bestScores__score__info__name__title {
font-size: 0.9rem;
color: var(--color3);
}
.skill-card-content {
/* background-color: var(--color7); */
}
.skill-card-content-inner {
color: var(--color4);
}
.gh-act-icons {
img {
background-color: var(--color7);
}
}
.albumart {
padding-top: 5px;
width: 97%;
}
2022-01-18 09:50:39 +00:00
`;