Skip to content

Commit 4608828

Browse files
author
Driss Chelouati
committed
fixed for w3c validation
1 parent e106729 commit 4608828

File tree

7 files changed

+65
-65
lines changed

7 files changed

+65
-65
lines changed

html/includes/footer.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<!-- Logo -->
44
<div class="footer-logo">
55
<a href="#">
6-
<img class="rotating" src="assets/images/logo/krypton-gradient.svg">
6+
<img class="rotating" src="assets/images/logo/krypton-gradient.svg" alt="">
77
<div class="brand-name">Krypton</div>
88
<div class="brand-subtitle">Blockchain brought to another level</div>
99
</a>
@@ -67,5 +67,5 @@
6767
</div>
6868

6969
<!-- Absolute image -->
70-
<img class="solar-system" src="assets/images/bg/solar.svg">
70+
<img class="solar-system" src="assets/images/bg/solar.svg" alt="">
7171
</footer>

html/includes/navbar-clone.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<!-- Menu item -->
3333
<div class="navbar-item is-nav-link">
3434
<a class="is-centered-responsive" href="#" target="_blank">
35-
<img class="telegram" src="assets/images/logo/telegram.svg">
35+
<img class="telegram" src="assets/images/logo/telegram.svg" alt="">
3636
Telegram
3737
</a>
3838
</div>

html/includes/navbar.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<!-- Menu item -->
3333
<div class="navbar-item is-nav-link">
3434
<a class="is-centered-responsive" href="#" target="_blank">
35-
<img class="telegram" src="assets/images/logo/telegram.svg">
35+
<img class="telegram" src="assets/images/logo/telegram.svg" alt="">
3636
Telegram
3737
</a>
3838
</div>

html/layouts/default.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html lang="en">
2+
<html lang="zxx">
33
<head>
44
<!-- Required meta tags always come first -->
55
<meta charset="utf-8">

html/pages/index.html

Lines changed: 53 additions & 53 deletions
Large diffs are not rendered by default.

js/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ $(document).ready(function() {
6363
});
6464

6565
//Navigation Tabs
66-
$('.flying-tabs li').on('click', function() {
66+
$('.flying-tabs .flying-child').on('click', function() {
6767
var tab_id = $(this).attr('data-tab');
6868

69-
$(this).siblings('li').removeClass('is-active');
69+
$(this).siblings('.flying-child').removeClass('is-active');
7070
$(this).closest('.flying-wrapper').find('.flying-tabs-content').children('.tab-content').removeClass('is-active');
7171

7272
$(this).addClass('is-active');

scss/partials/_features.scss

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ TABLE OF CONTENTS
123123
//tabs
124124
.flying-tabs {
125125
//tab-item
126-
li {
126+
.flying-child {
127127
display: inline;
128128
text-align: center;
129129
&.is-active a {
@@ -148,19 +148,19 @@ TABLE OF CONTENTS
148148
margin: 0;
149149
}
150150

151-
.tab-2.is-active ~ hr {
151+
.tab-2.is-active ~ .slider {
152152
margin-left: 25%;
153153
}
154154

155-
.tab-3.is-active ~ hr {
155+
.tab-3.is-active ~ .slider {
156156
margin-left: 50%;
157157
}
158158

159-
.tab-4.is-active ~ hr {
159+
.tab-4.is-active ~ .slider {
160160
margin-left: 75%;
161161
}
162162
//Flying underline
163-
hr {
163+
.slider {
164164
height: 2px;
165165
border-radius: 10px;
166166
width: 25%;

0 commit comments

Comments
 (0)