Skip to content

Commit 12a6abe

Browse files
author
Krystle Salazar
committed
Merge branch 'develop' of github.com:creativecommons/caselaw into bugfix/content-alignment
2 parents fc5e71f + 9fdb32a commit 12a6abe

File tree

5 files changed

+22
-11
lines changed

5 files changed

+22
-11
lines changed

.github/CODEOWNERS

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# These owners will be the default owners for everything in
2-
# the repo. Unless a later match takes precedence, they will
2+
# the repo. Unless a later match takes precedence, they will
33
# be requested for review when someone opens a pull request.
4-
* @creativecommons/ct-legal-database-core-committers @creativecommons/internal-tech
4+
* @creativecommons/internal-tech
5+
* @creativecommons/ct-legal-database-core-committers

README.md

+10
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,20 @@
99
1010
:warning: **This project, CC’s Legal Database, is undergoing a reimplementation using Django, you can see a preview running on [Heroku](https://cc-caselaw.herokuapp.com/).**
1111

12+
1213
Visit the current website: **[CC Legal Database [Beta]][website]**.
1314

1415
[website]: https://labs.creativecommons.org/caselaw/
1516

17+
> :warning: **This project is under active development in the
18+
> [`develop`][devbranch] branch.** For more information, see:
19+
> - [Posts in the Outreachy May 2020 round: CC Legal Database
20+
> series][blogseries]
21+
22+
[devbranch]: https://github.com/creativecommons/caselaw/tree/develop
23+
[blogseries]: https://opensource.creativecommons.org/blog/entries/legal-database-a-new-beginning/#series
24+
25+
1626

1727
## Code of Conduct
1828

legal_db/static/styles.scss

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
$color-tomato: rgb(237, 89, 47);
33
$color-brighter-tomato: rgb(255, 105, 51);
44
$color-dark-turquoise: rgb(5, 181, 218);
5+
$color-forest-green:rgb(4,166,53);
56
$color-dark-slate-blue: rgb(60, 92, 153);
67
$color-dark-gray: rgb(118, 118, 118);
78
$color-dark-slate-gray: rgb(51, 51, 51);
8-
$color-gray: rgb(176, 176, 176);
99
$color-light-gray: rgb(216, 216, 216);
1010
$color-lighter-gray: rgb(245, 245, 245);
1111

@@ -61,22 +61,22 @@ a, a:hover {
6161
}
6262
}
6363
&.scholarship {
64-
background-color: $color-dark-turquoise;
65-
border-color: $color-dark-turquoise;
64+
background-color: $color-forest-green;
65+
border-color: $color-forest-green;
6666
color: white;
6767

6868
&.tag {
6969
background-color: white;
7070
color: $color-dark-gray;
7171

7272
&.outline {
73-
border-color: $color-dark-turquoise;
73+
border-color: $color-forest-green;
7474
text-decoration: none;
7575
}
7676

7777
&:hover, &.selected {
78-
background-color: $color-dark-turquoise;
79-
border-color: $color-dark-turquoise;
78+
background-color: $color-forest-green;
79+
border-color: $color-forest-green;
8080
color: white;
8181
}
8282
}
@@ -258,7 +258,7 @@ footer a:hover {
258258
}
259259

260260
&.scholarship {
261-
box-shadow: inset 0px 6px 0px $color-dark-turquoise;
261+
box-shadow: inset 0px 6px 0px $color-forest-green;
262262
}
263263

264264
&-title, &-description, .breadcrumb {

legal_db/templates/legal_db/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ <h3 class="subtitle is-4 padding-bottom-big">Scholarship</h3>
4242
</div>
4343
<div class="column is-half">
4444
<article class="card entry-post link no-border">
45-
<a href="{% url 'scholarship_index' %}" class="has-background-dark-turquoise">
45+
<a href="{% url 'scholarship_index' %}" class="has-background-forest-green">
4646
<span class="card-content has-bottom-link">
4747
<h3 class="b-header has-text-white">Legal Scholarship Database</h3>
4848
<span class="content">The Scholarship Database aims to provide users with resources concerning the use, interpretation, and enforceability of Creative Commons licenses.</span>

legal_db/templates/legal_db/scholarship/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<h1 class="hero-title title is-2">Scholarship</h1>
99
<div class="contribute-card">
1010
<article class="card entry-post link no-border is-hidden-touch">
11-
<a href="{% url 'scholarship_submit' %}" class="has-background-dark-turquoise">
11+
<a href="{% url 'scholarship_submit' %}" class="has-background-forest-green">
1212
<span class="card-content has-bottom-link">
1313
<h2 class="card-title">Contribute</h2>
1414
<span class="content">Do you want to submit a scholarly article to the database?</span>

0 commit comments

Comments
 (0)