You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
2.4 KiB
72 lines
2.4 KiB
2 years ago
|
@charset "UTF-8";
|
||
|
#skills .content .wrapper {
|
||
|
height: 100%; }
|
||
|
|
||
|
.skills-wrapper {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
max-height: calc(100% - 80px); }
|
||
|
@media screen and (max-width: 1094px) {
|
||
|
.skills-wrapper .skills.technical {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
min-height: 300px;
|
||
|
overflow-x: auto; } }
|
||
|
@media screen and (min-width: 1095px) {
|
||
|
.skills-wrapper .skills.technical {
|
||
|
display: grid;
|
||
|
grid-gap: 5px;
|
||
|
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); } }
|
||
|
@media screen and (min-width: 1445px) {
|
||
|
.skills-wrapper .skills.technical {
|
||
|
grid-gap: var(--gap) var(--gap); } }
|
||
|
.skills-wrapper .skills.technical .skill {
|
||
|
flex: 1;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
padding: var(--gap-s);
|
||
|
border: 2px solid var(--green);
|
||
|
transition: all 0.4s ease; }
|
||
|
@media screen and (max-width: 1094px) {
|
||
|
.skills-wrapper .skills.technical .skill {
|
||
|
flex: 1;
|
||
|
min-width: 140px;
|
||
|
min-height: 230px;
|
||
|
justify-content: center; } }
|
||
|
.skills-wrapper .skills.technical .skill-logo {
|
||
|
border-radius: 50%; }
|
||
|
.skills-wrapper .skills.technical .skill-name {
|
||
|
font-size: 20px;
|
||
|
text-align: center;
|
||
|
margin: 0 auto; }
|
||
|
.skills-wrapper .skills.technical .skill:last-child .skill-name {
|
||
|
font-size: var(--font-size__base); }
|
||
|
.skills-wrapper .other-skills {
|
||
|
margin-top: var(--gap); }
|
||
|
@media screen and (min-width: 768px) {
|
||
|
.skills-wrapper .other-skills {
|
||
|
display: flex;
|
||
|
overflow: hidden; } }
|
||
|
.skills-wrapper .other-skills .skills {
|
||
|
width: 100%;
|
||
|
background: var(--dark-lighter);
|
||
|
padding: var(--gap);
|
||
|
overflow: auto; }
|
||
|
@media screen and (min-width: 768px) {
|
||
|
.skills-wrapper .other-skills .skills.non-technical {
|
||
|
max-width: 340px;
|
||
|
margin-right: var(--gap); } }
|
||
|
.skills-wrapper .other-skills .skills.responsibilities h4 {
|
||
|
margin-bottom: var(--gap-s); }
|
||
|
.skills-wrapper .other-skills .skills.responsibilities ol li {
|
||
|
padding-left: var(--gap-s);
|
||
|
margin-left: var(--gap-s); }
|
||
|
.skills-wrapper .other-skills .skills.responsibilities ol li:not(:last-child) {
|
||
|
margin-bottom: var(--gap-s); }
|
||
|
.skills-wrapper .other-skills .skills.responsibilities ol li::marker {
|
||
|
content: '☉';
|
||
|
color: var(--green-lighter); }
|
||
|
|
||
|
/*# sourceMappingURL=skills.css.map */
|