cutestsun / homepage

My first personal website. Basically this is just a résumé.
https://cutestsun.github.io/homepage/
MIT License
0 stars 0 forks source link

Add intro and skills styles #17

Closed cutestsun closed 9 months ago

cutestsun commented 9 months ago

Add the following styles to the styles.css file:

.intro {
  display: flex;
  justify-content: start;
}

.intro__icon-wrapper {
  margin-right: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
}

.intro__icon {
  height: 1.1428rem;
  vertical-align: text-bottom;
}

.intro__icon path {
  fill: var(--text-decoration-color);
}

.intro_text {
  color: var(--secondary-text-color);
  text-align: justify;
}

.skills__header {
  color: var(--secondary-text-color);
  text-align: center;
  margin-bottom: 15px;
}

.skills__text {
  color: var(--secondary-text-color);
  text-align: justify;
}
cutestsun commented 9 months ago

Done