Skip to content

Commit b756972

Browse files
committed
Update
1 parent 43e4452 commit b756972

File tree

3 files changed

+32
-17
lines changed

3 files changed

+32
-17
lines changed

css/gaming.css

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
.stream {
2-
margin: 25px 0 0 0;
3-
width: 90%;
1+
2+
li.active{
3+
box-shadow: 0 0 5px rgba(81, 203, 238, 1);
4+
border: 1px solid rgba(81, 203, 238, 1);
45
}

index.html

Lines changed: 21 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515

1616
<!-- Custom styles for this template -->
1717
<link href="css/freelancer.css" rel="stylesheet">
18+
<!-- Custom css -->
19+
<link href="css/custom.css" rel="stylesheet">
1820
<!-- Just for debugging purposes. Don't actually copy this line! -->
1921
<!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
2022

@@ -76,18 +78,6 @@
7678
</div>
7779
</header>
7880

79-
80-
<!-- Skills -->
81-
<section id = "skills">
82-
<div class="container" >
83-
<div class="row">
84-
<div class="col-lg-12 text-center">
85-
<h2>skills</h2>
86-
</div>
87-
</div>
88-
</div>
89-
</section>
90-
9181
<!-- about section -->
9282
<section class="success" id ="about">
9383
<div class="container">
@@ -98,15 +88,31 @@ <h2> About me goes here</h2>
9888
</div>
9989
</div>
10090
</section>
101-
91+
<!-- Skills -->
92+
<section id = "skills">
93+
<div class="container" >
94+
<div class="row">
95+
<div class="col-lg-12 text-center">
96+
<h2>skills</h2>
97+
</div>
98+
</div>
99+
</div>
100+
</section>
102101

103102
<!-- hobbies -->
104103
<section id = "hobbies">
105104
<div class="container" >
106105
<div class="row">
107106
<div class="col-lg-12 text-center">
108107
<h2>hobbies</h2>
109-
</div>
108+
</div>
109+
<ul class = "list-group">
110+
<li class= "list-group-item">Sports</li>
111+
<li class= "list-group-item">Lifting</li>
112+
<li class= "list-group-item">Ardunio programing</li>
113+
<li class= "list-group-item">Power Lifting</li>
114+
<li class= "list-group-item">Building Computers</li>
115+
</ul>
110116
</div>
111117
</div>
112118
</section>
@@ -175,5 +181,6 @@ <h2>Contact Me</h2>
175181
<!-- Placed at the end of the document so the pages load faster -->
176182
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
177183
<script src="../../dist/js/bootstrap.min.js"></script>
184+
<script src="js/Custom.js"></script>
178185
</body>
179186
</html>

js/Custom.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
$( "li" ).hover(
2+
function() {
3+
$( this ).addClass( "active" );
4+
}, function() {
5+
$( this ).removeClass( "active" );
6+
}
7+
);

0 commit comments

Comments
 (0)