Skip to content

Latest commit

 

History

History
78 lines (61 loc) · 1.39 KB

File metadata and controls

78 lines (61 loc) · 1.39 KB
layout default.html
title Made With Servo
<style type="text/css"> .made-with-container { gap: 20px; display: flex; flex-wrap: wrap; justify-content: start; margin-bottom: 3rem; } .made-with-container::last-child { margin-bottom: 0; } .made-with-item { display: block; width: 400px; max-width: 100%; flex: 0 0 400px; border: 2px solid var(--dark-grey); cursor: pointer; color: inherit; text-decoration: inherit; } .made-with-item:hover { background-color: #EAEAEA; } .made-with-text { padding: 1.25rem; } .made-with-text > p { padding: 0; } .made-with-image { aspect-ratio: 2; object-fit: cover; object-position: top left; background-color: transparent; } </style>

{{ title }}

This page showcases projects that are built with Servo or Servo components.

{% for group in madewith %}

{{group.name}}

{% assign projects = group.projects | sort_natural: "name" %} {% for project in projects %} {% if project.img %} {% endif %}

{{ project.description }}

{% endfor %}

{% endfor %}