Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions artwork.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,8 @@
<nav class="nav-links">
<a href="./index.html#tools">Indexers</a>
<a href="./index.html#contribute">Contribute</a>
<a href="./artwork.html">Artwork</a>
<a href="https://discord.gg/w5TEzebTPk">Discord</a>
<a href="https://github.com/scip-code">GitHub</a>
<a href="https://discord.gg/w5TEzebTPk" target="_blank" rel="noopener noreferrer">Discord</a>
<a href="https://github.com/scip-code" target="_blank" rel="noopener noreferrer">GitHub</a>
</nav>
</header>

Expand Down Expand Up @@ -311,8 +310,10 @@ <h3>Logotype</h3>
<div>© 2026 The SCIP Authors | Apache-2.0 license</div>
<div class="footer-links">
<a href="./artwork.html">Artwork</a>
<a href="https://discord.gg/w5TEzebTPk">Discord</a>
<a href="https://github.com/scip-code">GitHub</a>
<a href="./code-of-conduct.html">Code of conduct</a>
<a href="./governance.html">Governance</a>
<a href="https://discord.gg/w5TEzebTPk" target="_blank" rel="noopener noreferrer">Discord</a>
<a href="https://github.com/scip-code" target="_blank" rel="noopener noreferrer">GitHub</a>
</div>
</footer>
</div>
Expand Down
56 changes: 56 additions & 0 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,19 @@
--sky: #34c3e5;
--paper: #fff3f0;
--ink: #060000;
/* Sticky .nav: 12px + 65px logo + 12px padding + small buffer for borders */
--sticky-nav-offset: 104px;
}

* {
box-sizing: border-box;
}

html {
/* Fragment / in-page links scroll so content isn’t hidden under sticky header */
scroll-padding-top: var(--sticky-nav-offset);
}

body {
margin: 0;
font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
Expand Down Expand Up @@ -415,7 +422,56 @@ a {
border-radius: 4px;
}

.coc .coc-heading {
font-size: 20px;
margin: 28px 0 12px;
}

.coc .coc-heading:first-of-type {
margin-top: 0;
}

.coc p:last-child {
margin-bottom: 0;
}

.coc .coc-subheading {
font-size: 18px;
font-weight: 600;
margin: 24px 0 10px;
}

.coc .coc-heading .coc-anchor,
.coc .coc-subheading .coc-anchor {
color: inherit;
text-decoration: none;
}

.coc .coc-heading .coc-anchor:hover,
.coc .coc-subheading .coc-anchor:hover,
.coc .coc-heading .coc-anchor:focus-visible,
.coc .coc-subheading .coc-anchor:focus-visible {
text-decoration: underline;
}

.coc code {
font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
font-size: 0.92em;
background: rgba(6, 0, 0, 0.06);
padding: 2px 6px;
border-radius: 4px;
}

.coc ol.list {
padding-left: 22px;
}

@media (max-width: 720px) {
:root {
/* Stacked logo + nav links sit taller than the single-row header */
--sticky-nav-offset: 148px;
}

.nav {
flex-direction: column;
align-items: flex-start;
Expand Down
115 changes: 115 additions & 0 deletions code-of-conduct.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="SCIP community code of conduct: expected behavior, what we won't tolerate, and how to report issues."
/>
<title>Code of Conduct - SCIP Code Intelligence Protocol</title>
<link rel="icon" href="./assets/images/scip-icon-color.svg" type="image/svg+xml" />
<link rel="stylesheet" href="./assets/css/style.css" />
</head>
<body>
<div class="page">
<header class="nav">
<div class="nav-title">
<a href="./index.html">
<img class="logo" src="./assets/images/scip-logo-color.svg" alt="SCIP" />
</a>
</div>
<nav class="nav-links">
<a href="./index.html#tools">Indexers</a>
<a href="./index.html#contribute">Contribute</a>
<a href="https://discord.gg/w5TEzebTPk" target="_blank" rel="noopener noreferrer">Discord</a>
<a href="https://github.com/scip-code" target="_blank" rel="noopener noreferrer">GitHub</a>
</nav>
</header>

<section class="hero" id="top">
<div>
<span class="pill">Community</span>
<h1 class="hero-title">SCIP’s Code of Conduct</h1>
<p class="hero-subtitle">
How we work together on SCIP: respect, professionalism, and clear expectations.
</p>
</div>
</section>

<section class="section">
<div class="card coc">
<h2 class="coc-heading" id="the-core-principle">
<a class="coc-anchor" href="#the-core-principle">1. The Core Principle</a>
</h2>
<p>
Be a decent human being. We are all here to build cool things and solve problems. Treat others
with the same respect you expect for yourself.
</p>

<h2 class="coc-heading" id="expected-behavior">
<a class="coc-anchor" href="#expected-behavior">2. Expected Behavior</a>
</h2>
<ul class="list">
<li><strong>Focus on the work:</strong> Critique ideas, not people.</li>
<li><strong>Be welcoming:</strong> Help newcomers. We all started somewhere.</li>
<li>
<strong>Keep it professional:</strong> This is a space for software development, not for
harassment, soapboxing, or personal attacks.
</li>
</ul>

<h2 class="coc-heading" id="what-we-wont-tolerate">
<a class="coc-anchor" href="#what-we-wont-tolerate">3. What We Won’t Tolerate</a>
</h2>
<ul class="list">
<li>
<strong>Harassment:</strong> This includes derogatory comments, threats, or unwanted sexual
attention.
</li>
<li>
<strong>Doxing:</strong> Sharing someone’s private information without consent is an immediate
ban.
</li>
<li><strong>Trolling:</strong> Sustained disruption of threads or baiting others into arguments.</li>
</ul>

<h2 class="coc-heading" id="enforcement">
<a class="coc-anchor" href="#enforcement">4. Enforcement</a>
</h2>
<p>Let us know if someone acts inappropriately.</p>
<ul class="list">
<li>
<strong>How to report:</strong>
<a class="list-link" href="mailto:community@sourcegraph.com">community@sourcegraph.com</a>
</li>
<li>
<strong>The Process:</strong> We will review the report. We aren't here to be the "thought
police," but we will take action to keep the project productive.
</li>
<li>
<strong>Consequences:</strong> Actions range from a private warning to a permanent ban from the
organization (Discord and/or GitHub).
</li>
</ul>

<h2 class="coc-heading" id="final-word">
<a class="coc-anchor" href="#final-word">5. Final Word</a>
</h2>
<p>Don’t make it weird. We just want to build a great project together.</p>
</div>
</section>

<footer class="footer">
<div>© 2026 The SCIP Authors | Apache-2.0 license</div>
<div class="footer-links">
<a href="./artwork.html">Artwork</a>
<a href="./code-of-conduct.html">Code of conduct</a>
<a href="./governance.html">Governance</a>
<a href="https://discord.gg/w5TEzebTPk" target="_blank" rel="noopener noreferrer">Discord</a>
<a href="https://github.com/scip-code" target="_blank" rel="noopener noreferrer">GitHub</a>
</div>
</footer>
</div>
</body>
</html>
Loading