Skip to content

Commit 4edfce3

Browse files
committed
Relatively minor style changes.
1 parent 6c57334 commit 4edfce3

File tree

5 files changed

+16
-28
lines changed

5 files changed

+16
-28
lines changed

assets/static/style.css

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
body {
2-
font-family: 'Source Sans Pro', sans-serif;
2+
font-family: 'Source Sans Pro', sans-serif;
3+
color: #333333;
34
}
4-
strong {
5-
font-weight: 900;
5+
h2 {
6+
font-weight: 600;
7+
padding-bottom: 0.5rem;
68
}
79
.page-content {
810
position: relative;
@@ -41,6 +43,8 @@ strong {
4143
border-color: #EE5B32;
4244
border-width: 10px;
4345
padding-left: 0px;
46+
font-weight: 600;
47+
color: #333333;
4448
}
4549
.project-idea-header {
4650
background-color: #fff;
@@ -60,7 +64,6 @@ strong {
6064
}
6165
.nav-item, .dropdown-item {
6266
font-size: 1.2em;
63-
font-weight: 900;
6467
}
6568
.dropdown:hover .dropdown-menu {
6669
display: block;

content/community/code-of-conduct/contents.lr

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
_model: page
22
---
3+
_template: page-with-toc.html
4+
---
35
title: CC Open Source Code of Conduct
46
---
57
body:

content/contents.lr

+5-15
Original file line numberDiff line numberDiff line change
@@ -10,34 +10,24 @@ body:
1010

1111
You can contribute to CC's software in a few different ways.
1212

13-
----
14-
15-
#### Finding bugs and suggesting features
13+
### Finding bugs and suggesting features
1614

1715
Using our software (such as [the new version of CC Search](http://ccsearch.creativecommons.org/)) and letting us know how it's working for you is very helpful. General suggestions, bug reports, a request to build a new feature – any form of feedback is excellent, no matter how small.
1816

1917
You can send us feedback in a few different ways. If you have a GitHub account, [creating a GitHub issue](https://help.github.com/articles/creating-an-issue/) is easiest for us because that's where we track our work. If you know which GitHub repository (see [a full list here](/projects)) corresponds to the software about which you'd like to give us feedback, then please create an issue attached to that repository. If you're not sure what that means or you don't know the correct repository, please create an issue [on the creativecommons.org repository](https://github.com/creativecommons/creativecommons.org/issues). You can also send us feedback in the `#cc-usability` channel [on the CC Slack community](https://creativecommons.org/2016/10/18/slack-announcement/) or via email at `software@creativecommons.org`.
2018

21-
----
22-
23-
#### Contributing code
19+
### Contributing code
2420

2521
Please see [Contributing Code](/contributing-code).
2622

27-
----
28-
29-
#### Integrating CC license metadata into your app
23+
### Integrating CC license metadata into your app
3024

3125
Please see [the "Integrate" page on the CC wiki](https://wiki.creativecommons.org/wiki/Integrate).
3226

33-
----
34-
35-
#### Helping translate our content
27+
### Helping translate our content
3628

3729
Please see [the "Translate" page on the CC wiki](https://wiki.creativecommons.org/wiki/Translate).
3830

39-
----
40-
41-
#### Contributing design
31+
### Contributing design
4232

4333
If you'd like to improve the design of one of our tools or products, please propose your change in [one of our community forums](/community) and collaborate with a CC staff member if requested to before making any changes.

content/contributing-code/contents.lr

-7
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,10 @@ Here's a list of [all our current projects](/projects). We do all of our develop
1212

1313
We are working on making sure all of our projects are documented, licensed, and have self-contained contribution guidelines. Until we finish that work, follow the checklist below before writing any code.
1414

15-
----
16-
1715
**Make sure that the project is ready for contribution**
1816

1917
If the repository has no license file, code of conduct, or is missing basic documentation, please create a GitHub issue attached to that repository to set those up. We will prioritize adding these files to repositories towards which people show active interest in contributing.
2018

21-
2219
**Make sure your change will be accepted**
2320

2421
* If you want to work on an open GitHub issue tagged "help wanted" or "good first issue", comment on it to indicate that you're working on it (so that no one else does) and submit a pull request when you're ready. No other steps are needed.
@@ -29,16 +26,12 @@ If the repository has no license file, code of conduct, or is missing basic docu
2926

3027
When in doubt, ask a question on [one of our community forums](/community).
3128

32-
----
33-
3429
## New projects
3530

3631
We are also open to working on or hosting projects that are related to the Creative Commons licenses or general mission. Our [Google Summer of Code project ideas](/gsoc-2019/project-ideas) list is a good place to find ideas we'd like implemented. If you're interested in working on one of them, please propose it in one of our [community forums](/community) (you don't need to be a student, anyone is welcome to work on those ideas) and work out implementation details with CC staff members before you write any code. If you want to suggest a new project idea, follow the same process.
3732

3833
In general, we'd like any new projects to use Python, WordPress/PHP, and/or JavaScript (our framework of choice is Vue.js) so that our team can help review and maintain the project.
3934

40-
----
41-
4235
## General best practices
4336

4437
No matter what kind of project you're working on, these are good guidelines to follow

templates/layout.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<meta name="viewport" content="width=device-width, initial-scale=1" />
44
<link rel="shortcut icon" type="image/x-icon" href="{{ '/static/favicon.ico'|url }}">
55
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
6-
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro" rel="stylesheet">
6+
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700" rel="stylesheet">
77
<link rel="stylesheet" href="{{ '/static/style.css'|url }}">
88
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
99
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js" integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut" crossorigin="anonymous"></script>
@@ -75,7 +75,7 @@
7575
<div class="col-9 content-wrap">
7676
<div class="page py-3">
7777
<a name="top"></a>
78-
<h1 class="page-title pb-3 mb-4"><strong>{% block header %}{{ this.title }}{% endblock %}</strong></h1>
78+
<h1 class="page-title pb-3 mb-4">{% block header %}{{ this.title }}{% endblock %}</h1>
7979
{% block body %}{% endblock %}
8080
<a id="back-to-top" href="#top" class="btn btn-dark btn-sm" role="button">Back to top</a>
8181
</div>

0 commit comments

Comments
 (0)