-
-
Notifications
You must be signed in to change notification settings - Fork 775
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Reduce size of h1 element for yge * Update yge button styles to match ui kit * Reduce extra spacing on emoji elements * Update body font color to match ui kit
- Loading branch information
1 parent
2602b04
commit f45d40f
Showing
8 changed files
with
107 additions
and
201 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,83 +1,84 @@ | ||
{% comment %} | ||
Copyright (C) 2018 Gitcoin Core | ||
|
||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU Affero General Public License as published | ||
by the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
|
||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU Affero General Public License for more details. | ||
|
||
You should have received a copy of the GNU Affero General Public License | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
{% endcomment %} | ||
{% load i18n static %} | ||
<!DOCTYPE HTML> | ||
<html> | ||
<head> | ||
{% include 'shared/tag_manager_1.html' %} | ||
<title>{{title}} | Gitcoin</title> | ||
<meta charset="utf-8" /> | ||
<meta name=viewport content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no"> | ||
<meta name="theme-color" content="#ffffff"> | ||
<!--[if lte IE 8]><script src="{% static "yge/js/html5shiv.js" %}"></script><![endif]--> | ||
<link rel="stylesheet" href="{% static "v2/css/gitcoin.css" %}" /> | ||
<link rel="stylesheet" href="{% static "yge/css/main.css" %}" /> | ||
<link rel="stylesheet" href="{% static "v2/css/rain.css" %}" /> | ||
<link rel="stylesheet" href="{% static "v2/css/jquery.select2.min.css" %}" /> | ||
<script src="{% static "v2/js/jquery.js" %}"></script> | ||
<script src="{% static "v2/js/work_with_gitcoin.js" %}"></script> | ||
<!--[if lte IE 9]><link rel="stylesheet" href="{% static "yge/css/ie9.css" %}" /><![endif]--> | ||
<!--[if lte IE 8]><link rel="stylesheet" href="{% static "yge/css/ie8.css" %}" /><![endif]--> | ||
<noscript> | ||
<link rel="stylesheet" href="{% static "yge/css/noscript.css" %}" /> | ||
</noscript> | ||
{% include 'shared/favicon.html' %} | ||
{% include 'shared/rollbar.html' %} | ||
</head> | ||
<body id="yge" class="{{ class }}"> | ||
{% include 'shared/tag_manager_2.html' %} | ||
{% include 'shared/analytics.html' %} | ||
{% block 'world' %} {% endblock %} | ||
{% include 'shared/rain.html' with class="color" %} | ||
<!-- Wrapper --> | ||
<div id="wrapper"> | ||
<!-- Main --> | ||
{% block 'main' %} {% endblock %} | ||
<!-- Footer --> | ||
<footer id="footer"> | ||
<ul class="copyright"> | ||
<li> | ||
<a href="/">© Gitcoin.co</a> | ||
</li> | ||
<li> | ||
<a href="{% url "tip" %}">{% trans "Send Tip" %}</a> | ||
</li> | ||
</ul> | ||
</footer> | ||
</div> | ||
<!-- Scripts --> | ||
<script type="text/javascript" src="{% url 'javascript-catalog' %}"></script> | ||
{% block 'scripts' %}{% endblock %} | ||
<script src="{% static "v2/js/jquery.select2.min.js" %}"></script> | ||
<!--[if lte IE 8]><script src="{% static "yge/js/respond.min.js" %}"></script><![endif]--> | ||
<script> | ||
if ('addEventListener' in window) { | ||
window.addEventListener('load', function () { | ||
document.body.className = document.body.className.replace(/\bis-loading\b/, ''); | ||
}); | ||
document.body.className += (navigator.userAgent.match(/(MSIE|rv:11\.0)/) ? ' is-ie' : ''); | ||
} | ||
</script> | ||
{% if recommend_gas_price %} | ||
<script type="text/javascript"> | ||
setInterval(function () { | ||
defaultGasPrice = parseInt(10 ** 9 * {{ recommend_gas_price }}); | ||
}, 1000); | ||
</script> | ||
{% endif %} | ||
</body> | ||
</html> | ||
{% comment %} | ||
Copyright (C) 2018 Gitcoin Core | ||
|
||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU Affero General Public License as published | ||
by the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
|
||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU Affero General Public License for more details. | ||
|
||
You should have received a copy of the GNU Affero General Public License | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
{% endcomment %} | ||
{% load i18n static %} | ||
<!DOCTYPE HTML> | ||
<html> | ||
<head> | ||
{% include 'shared/tag_manager_1.html' %} | ||
<title>{{title}} | Gitcoin</title> | ||
<meta charset="utf-8" /> | ||
<meta name=viewport content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no"> | ||
<meta name="theme-color" content="#ffffff"> | ||
<!--[if lte IE 8]><script src="{% static "yge/js/html5shiv.js" %}"></script><![endif]--> | ||
<link rel="stylesheet" href="{% static "v2/css/gitcoin.css" %}" /> | ||
<link rel="stylesheet" href="{% static "yge/css/main.css" %}" /> | ||
<link rel="stylesheet" href="{% static "v2/css/rain.css" %}" /> | ||
<link rel="stylesheet" href="{% static "v2/css/jquery.select2.min.css" %}" /> | ||
<link rel="stylesheet" href="{% static "v2/css/forms/button.css" %}" /> | ||
<script src="{% static "v2/js/jquery.js" %}"></script> | ||
<script src="{% static "v2/js/work_with_gitcoin.js" %}"></script> | ||
<!--[if lte IE 9]><link rel="stylesheet" href="{% static "yge/css/ie9.css" %}" /><![endif]--> | ||
<!--[if lte IE 8]><link rel="stylesheet" href="{% static "yge/css/ie8.css" %}" /><![endif]--> | ||
<noscript> | ||
<link rel="stylesheet" href="{% static "yge/css/noscript.css" %}" /> | ||
</noscript> | ||
{% include 'shared/favicon.html' %} | ||
{% include 'shared/rollbar.html' %} | ||
</head> | ||
<body id="yge" class="{{ class }}"> | ||
{% include 'shared/tag_manager_2.html' %} | ||
{% include 'shared/analytics.html' %} | ||
{% block 'world' %} {% endblock %} | ||
{% include 'shared/rain.html' with class="color" %} | ||
<!-- Wrapper --> | ||
<div id="wrapper"> | ||
<!-- Main --> | ||
{% block 'main' %} {% endblock %} | ||
<!-- Footer --> | ||
<footer id="footer"> | ||
<ul class="copyright"> | ||
<li> | ||
<a href="/">© Gitcoin.co</a> | ||
</li> | ||
<li> | ||
<a href="{% url "tip" %}">{% trans "Send Tip" %}</a> | ||
</li> | ||
</ul> | ||
</footer> | ||
</div> | ||
<!-- Scripts --> | ||
<script type="text/javascript" src="{% url 'javascript-catalog' %}"></script> | ||
{% block 'scripts' %}{% endblock %} | ||
<script src="{% static "v2/js/jquery.select2.min.js" %}"></script> | ||
<!--[if lte IE 8]><script src="{% static "yge/js/respond.min.js" %}"></script><![endif]--> | ||
<script> | ||
if ('addEventListener' in window) { | ||
window.addEventListener('load', function () { | ||
document.body.className = document.body.className.replace(/\bis-loading\b/, ''); | ||
}); | ||
document.body.className += (navigator.userAgent.match(/(MSIE|rv:11\.0)/) ? ' is-ie' : ''); | ||
} | ||
</script> | ||
{% if recommend_gas_price %} | ||
<script type="text/javascript"> | ||
setInterval(function () { | ||
defaultGasPrice = parseInt(10 ** 9 * {{ recommend_gas_price }}); | ||
}, 1000); | ||
</script> | ||
{% endif %} | ||
</body> | ||
</html> |
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
Oops, something went wrong.