Skip to content

Commit

Permalink
Add my mark
Browse files Browse the repository at this point in the history
  • Loading branch information
gjtorikian committed Aug 13, 2018
1 parent 2b2c710 commit 676e1a9
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,40 @@
top: 0;
left: 0;
}

.image-holder {
height: 40px;
width: 40px;
position: absolute;
float: right;
right: 0;
}

div.image-holder img.after {
visibility: hidden;
opacity: 0;
transition: visibility 0s, opacity 0.5s linear;
position: absolute;
float: right;
top: 0;
right: 0;
}
div.image-holder:hover img.after {
visibility: visible;
opacity: 1;
}
</style>
<!-- all of that up there is just crap for the site! now the real fun begins. -->

</head>

<div class="image-holder">
<a href="https://www.gjtorikian.com/">
<img class="before" src="https://www.gjtorikian.com/assets/images/symbol_opacity_small.png" />
<img class="after" src="https://www.gjtorikian.com/assets/images/symbol_small.png" />
</a>
</div>

<body class="w-100 sans-serif">
<section class="pv2">
<canvas-overlay></canvas-overlay>
Expand Down

0 comments on commit 676e1a9

Please sign in to comment.