Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions css/student_style.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,24 @@
}

/* Place your styles below this line */

#iulian-bolintis {
background-image: url('../images/iulian.jpg');
background-repeat: no-repeat;
background-size: 100%;
background-position: center;
font-size: 30px;
color: #fff;
font-family: 'Arial Black', Gadget, sans-serif;
text-shadow: 1px 1px #000;
transition: .2s;
}

#iulian-bolintis:hover {
background-image: url('../images/iulian.jpg');
color: #ff00f7;
text-shadow: 2px 2px #fff;
outline: 10px solid orange;
box-shadow: 18px 18px 10px #000;
animation: bounce .6s infinite ease;
}
Binary file added images/iulian.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,13 @@ <h1>SCHOOL_NAME Student Portfolios</h1>
</div>
<!-- Copy lines 46-50, paste and edit below -->



<div class="col-sm-4">
<a class="student-tile" id ="iulian-bolintis" href="">
<span>Iulian Bolintis</span>
</a>
</div>
</div>
</body>
</html>