1
0
mirror of https://github.com/mgerb/mywebsite synced 2026-01-12 02:42:48 +00:00

plenty o changes

This commit is contained in:
2016-08-18 20:32:54 +00:00
parent 2cfda4bb4f
commit 3e6ffc206a
11 changed files with 175 additions and 30 deletions

View File

@@ -0,0 +1,25 @@
/* Effect 1: Brackets */
.link{
position: relative;
&:before{
content: "";
position: absolute;
width: 100%;
height: 1px;
bottom: 0;
left: 0;
background-color: #3598db;
visibility: hidden;
-webkit-transform: scaleX(0);
transform: scaleX(0);
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
}
&:hover:before{
visibility: visible;
-webkit-transform: scaleX(1);
transform: scaleX(1);
}
}