Skip to content

Commit

Permalink
fix: improved font and colors
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidLemayian committed Mar 2, 2022
1 parent 18bbe15 commit a7f10c3
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 19 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021 Center for Women's Rights Advocacy
Copyright (c) 2021 - 2022 Center for Women's Rights Advocacy

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Built by [Tenery Research](https://tenery.cc/) for [CWRA](https://cwra.africa/)

MIT License

Copyright (c) 2021 Center for Women's Rights Advocacy
Copyright (c) 2021 - 2022 Center for Women's Rights Advocacy

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Original file line number Diff line number Diff line change
@@ -1,36 +1,42 @@
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

* {
font-family: 'IBM Plex Sans', sans-serif;
}

body {
background-color: #0095AC;
background-color: #eee;
}

/* -------------------------------------------------- */
/* Header */
/* -------------------------------------------------- */
.account-masthead {
background-color: #0095AC;
background-color: #D24EBE;
}
.account-masthead .account ul li {
border-left: 1px solid #005663;
border-left: 1px solid #8B1779;
}
.account-masthead .account ul li a {
color: #ffffff;
}
.account-masthead .account ul li a:hover {
background-color: #005663;
background-color: #8B1779;
}
.account-masthead .account .notifications a span.badge {
background-color: #005663;
background-color: #8B1779;
}

/* Navbar */
.masthead {
background-color: #ffffff;
background: #ffffff;
}
.masthead .nav > li > a {
color: #333333;
}
.masthead .navigation .nav-pills li a:hover, .masthead .navigation .nav-pills li a:focus, .masthead .navigation .nav-pills li.active a {
color: #ffffff;
background-color: #0095AC;
background-color: #D24EBE;
}
.masthead .navbar-toggle .fa {
color: #333333;
Expand All @@ -50,32 +56,46 @@ body {
}

/* Hero */
.homepage .hero .box {
margin: 30px 0;
.hero {
background: #ffffff;
}
.homepage .hero {
padding-bottom: 40px;
}
.featured .media-image img {
max-width: 100%;
}
.homepage .module-search {
margin-top: 20px;
}
.homepage .module-search .module-content {
background-color: #0095AC;
background-color: #D24EBE;
}
.homepage .module-search .search-giant input {
border-color: #005663;
border-color: #8B1779;
}
.homepage .module-search .tags {
background-color: #005663;
background-color: #8B1779;
}
a.tag:hover {
border-color: #8B1779;
background-color: #D24EBE;
box-shadow: #D24EBE;
}

/* -------------------------------------------------- */
/* Footer */
/* -------------------------------------------------- */
.site-footer {
padding: 50px 0;
background-color: #005663;
background: #424242;
}
.site-footer a {
color: #ffffff;
}
.site-footer a:hover {
color: #FF9CE3;
}
.site-footer .cwra-logo {
width: 150px;
margin-bottom: 15px;
Expand All @@ -94,14 +114,14 @@ body {

/* Buttons */
.btn-primary {
background-color: #0095AC;
border-color: #005663;
background-color: #C722AE;
border-color: #8B1779;
}
.btn-primary:hover {
background-color: #005663;
background-color: #8B1779;
}

/* Links */
a {
color: #005663;
color: #8B1779;
}

0 comments on commit a7f10c3

Please sign in to comment.