-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
240 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,77 @@ | ||
:root { | ||
--main-light-color: #f9f9f9; | ||
--main-light-color: #f0f0f0; | ||
--main-dark-color: #111111; | ||
--main-contrast-dark-color: #052520; | ||
--main-contrast-light-color: #3aac97; | ||
} | ||
|
||
body { | ||
min-height: 100vh; | ||
background-color: var(--main-light-color); | ||
color: var(--main-dark-color); | ||
color: var(--main-light-color); | ||
display: flex; | ||
flex-direction: column; | ||
background-color: var(--main-dark-color); | ||
} | ||
|
||
a { | ||
color: var(--main-contrast-light-color); | ||
} | ||
|
||
p { | ||
margin: 12px 0; | ||
} | ||
|
||
header { | ||
margin-top: 32px; | ||
} | ||
|
||
header h1 { | ||
font-size: 280%; | ||
} | ||
|
||
header h1 span { | ||
color: var(--main-contrast-light-color); | ||
} | ||
|
||
main { | ||
flex: 1; | ||
flex: 2; | ||
} | ||
|
||
footer { | ||
background-color: var(--main-dark-color); | ||
color: var(--main-light-color); | ||
flex: 1; | ||
} | ||
|
||
.container { | ||
width: 100%; | ||
max-width: 1024px; | ||
margin: 0 auto; | ||
padding: 32px 0; | ||
padding: 32px 12px; | ||
} | ||
|
||
.members { | ||
display: grid; | ||
grid-template-columns: repeat(3, 1fr); | ||
gap: 32px; | ||
margin: 68px 0; | ||
} | ||
|
||
.members > a { | ||
border-left: 8px solid var(--main-contrast-light-color); | ||
background-color: var(--main-contrast-dark-color); | ||
padding: 8px; | ||
font-family: "Inter"; | ||
font-size: 80%; | ||
text-decoration: none; | ||
color: var(--main-contrast-light-color); | ||
} | ||
|
||
.no-members { | ||
color: var(--main-contrast-light-color); | ||
border-left: 8px solid var(--main-contrast-dark-color); | ||
padding: 32px; | ||
margin: 64px 0; | ||
font-family: "Inria Serif"; | ||
font-size: 180%; | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,21 @@ | ||
{%- autoescape false -%} {{ yocaml_body }} {%- endautoescape -%} | ||
{%- autoescape false -%} {{ yocaml_body }} {%- endautoescape -%} {%- if | ||
has_interests -%} | ||
<p class="interests"> | ||
We're interested in a range of subjects, for example {%- for it in interests | ||
%} | ||
<a href="{{it.url.url}}">{{ it.title }}</a>{{ it.sep }}{%- endfor -%}. If you | ||
are interested in the different topics proposed or if you find yourself close | ||
to the ideas presented by the different members of the ring, don't hesitate to | ||
<a href="https://github.com/muhokama/ring">add your own digital space</a>! | ||
</p> | ||
{%- endif -%} {%- if has_members -%} | ||
<section class="members"> | ||
{%- for m in chain -%} | ||
<a id="member-{{ m.id }}" href="{{ m.main_link.url.url }}" | ||
>{{ m.display_name }}</a | ||
> | ||
{%- endfor -%} | ||
</section> | ||
{%- else -%} | ||
<section class="no-members">The ring is empty</section> | ||
{%- endif -%} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters