Skip to content

Commit

Permalink
Fix minor style bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinLinus committed Apr 8, 2016
1 parent 6f88e83 commit 1637bc1
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 9 deletions.
12 changes: 8 additions & 4 deletions app/elements/welcome-card/welcome-card.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
}

.footer {
margin-top: 40px;
margin-top: 0px;
text-align: center;
}

Expand All @@ -20,12 +20,16 @@
}

.card-body {
padding-top: 24px;
padding-top: 0px;
}

.main{
padding-bottom: 4px;
}
</style>
<div class="card">
<div class="header">Web Security Quiz</div>
<div class="card-body">
<div class="card-body main">
<p>
How good is your Web Security knowledge?
<br>
Expand All @@ -38,7 +42,7 @@
<paper-button on-tap="_start">Start Quiz</paper-button>
</div>
<div class="card-body footer">
Raise awareness for Web Security by <a target="_blank" href="https://twitter.com/intent/tweet?text=Test%20your%20Web%20Security%20Knowledge:%20https://websecurity.firebaseapp.com%20by%20@capira42%20" target="_blank">tweeting about this quiz,</a> or
Raise awareness for Web Security by <a target="_blank" href="https://twitter.com/intent/tweet?text=Test%20your%20Web%20Security%20knowledge%20with%20@owasp%20exam%20questions:%20https://websecurity.firebaseapp.com%20by%20@robin_linus%20?" target="_blank">tweeting about this quiz</a>, or
<a target="_blank" href="https://www.facebook.com/sharer/sharer.php?u=https%3A//websecurity.firebaseapp.com">share it on Facebook</a>. <br><br>
<a target="_blank" href="https://github.com/yougrow/websecurity-quiz">Source on Github</a>
<br>
Expand Down
26 changes: 21 additions & 5 deletions app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="generator" content="Web Security Quiz">
<meta name="description" content="How well is your Web Security Knowledge? Test it with official OWASP Exam Questions!">
<meta name="description" content="How good is your Web Security Knowledge? Test it with official OWASP Exam Questions!">
<meta property="image" content="https://websecurity.firebaseapp.com/images/websecquiz-twitter.png" />
<meta property="og:image" content="https://websecurity.firebaseapp.com/images/websecquiz-twitter.png" />
<meta property="og:url" content="http://websecurity.firebaseapp.com" />
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@capira42">
<meta name="twitter:creator" content="@snapdrop42">
<meta name="twitter:title" content="How well is your Web Security Knowledge?">
<meta name="twitter:site" content="@robin_linus">
<meta name="twitter:creator" content="@robin_linus">
<meta name="twitter:title" content="How good is your Web Security Knowledge?">
<meta name="twitter:image" content="https://websecurity.firebaseapp.com/images/websecquiz-twitter.png" />
<meta name="twitter:description" content="How well is your Web Security Knowledge? Test it with official OWASP Exam Questions!">
<meta name="twitter:description" content="How good is your Web Security Knowledge? Test it with official OWASP Exam Questions!">
<title>Web Security Quiz</title>
<!-- Place favicon.ico in the `app/` directory -->
<!-- Chrome for Android theme color -->
Expand Down Expand Up @@ -64,6 +64,22 @@
<!-- build:js scripts/app.js -->
<script src="scripts/app.js"></script>
<!-- endbuild-->
<script>
(function(i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function() {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');

ga('create', 'UA-76168906-1', 'auto');
ga('send', 'pageview');
</script>
</body>

</html>

0 comments on commit 1637bc1

Please sign in to comment.