Lemoncode / manfred-export-app

MIT License
28 stars 12 forks source link

[manfred2HTML] Create new CV template monocrome example #249

Closed juanpms2 closed 11 months ago

juanpms2 commented 12 months ago

This template only use this colors:

CV-monocrome-desktop

This is an example or guide for the user image:

    <div class="avatar">
      <div class="image"></div>
      <div class="filter"></div>
    </div>
.avatar {
  position: relative;
  width: 300px;
  height: 300px;
  overflow: hidden;
}

.image {
  width: 100%;
  height: 100%;
  background-image: url("https://media-asgard.s3.eu-west-1.amazonaws.com/22/11/22/46a1d99e-54b1-4d4f-b887-bd32b97684d8_david_squared_2018.jpg");
  background-size: cover;
  filter: saturate(25%);
}

.filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #28868b; /* primary-500 color */
  opacity: 0.15;
}