79 lines
No EOL
1.1 KiB
CSS
79 lines
No EOL
1.1 KiB
CSS
/* #box {
|
|
background-color: aquamarine;
|
|
height: 80vh;
|
|
margin: 2%;
|
|
// border-radius: 20px 0px 20px 0px;
|
|
border-radius: 0px 20px 0px 20px;
|
|
} */
|
|
body {
|
|
background-color: black;
|
|
color: white;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: white;
|
|
}
|
|
|
|
#box {
|
|
position: absolute;
|
|
z-index: 999;
|
|
border: 25px solid white;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
right: 0;
|
|
bottom: 0;
|
|
pointer-events: none;
|
|
-webkit-transition: border-color 0.5s ease-in-out;
|
|
transition: border-color 0.5s ease-in-out;
|
|
}
|
|
|
|
a:hover ~ #box .colorBorder {
|
|
border-color: red;
|
|
}
|
|
|
|
.title {
|
|
font-size: 6vw;
|
|
margin: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.center {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
-webkit-transform: translate(-50%, -50%);
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
.portfolio,
|
|
.lore,
|
|
.art {
|
|
font-size: 3vw;
|
|
}
|
|
|
|
@-webkit-keyframes LinkHover {
|
|
from {
|
|
color: white;
|
|
}
|
|
to {
|
|
color: red;
|
|
}
|
|
}
|
|
|
|
@keyframes LinkHover {
|
|
from {
|
|
color: white;
|
|
}
|
|
to {
|
|
color: red;
|
|
}
|
|
}
|
|
/*# sourceMappingURL=main.css.map */ |