yuki/styles.css

138 lines
2.1 KiB
CSS
Raw Permalink Normal View History

2023-10-16 19:08:01 +00:00
body
{
font-family: 'Shantell Sans', cursive;
background: url("bg.jpg") #306;
background-size: cover;
background-position: center;
background-attachment: fixed;
text-align: center;
@supports (background-image: url("bg.avif"))
{
background-image: url("bg.avif");
}
}
main
{
background-color: rgba(255, 255, 255, 0.5);
color: black;
width: 960px;
margin: 16px auto;
border-radius: 1em;
padding: 0.5em;
}
#logo
{
background-color: transparent;
width: 256px;
height: 256px;
margin: auto;
margin-top: 6em;
margin-bottom: 4em;
perspective: 1000px;
}
#logo-inner
{
position: relative;
width: 100%;
height: 100%;
text-align: center;
vertical-align: middle;
transition: transform 0.8s;
transform-style: preserve-3d;
}
#logo:hover #logo-inner
{
transform: rotateY(-180deg);
}
#logo-front, #logo-back
{
position: absolute;
width: 100%;
height: 100%;
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
background-color: white;
color: black;
border-radius: 50%;
box-shadow: 8px 8px 0px 2px black;
2023-10-30 03:47:14 +00:00
}
#logo-front
{
background: url("hackerslogo.png") white;
background-size: cover;
2023-10-16 19:08:01 +00:00
}
#logo-back
{
2023-10-30 03:47:14 +00:00
background: url("avatar.webp") white;
2023-10-16 19:08:01 +00:00
background-size: cover;
transform: rotateY(180deg);
}
#logo-back video
{
width: 100%;
height: 100%;
border-radius: 50%;
}
h1
{
font-size: 3em;
font-weight: 600;
margin-bottom: 0;
}
ul
{
padding-left: 0;
2023-10-30 03:47:14 +00:00
/*margin-top: 3em;*/
2023-10-16 19:08:01 +00:00
margin-bottom: 3em;
}
li
{
width: 50%;
margin: 1em auto;
background-color: blueviolet;
list-style-type: none;
border-radius: 16px;
box-shadow: 6px 6px black;
transition: 0.2s;
}
li:hover
{
transform: translate(4px, 4px);
box-shadow: 2px 2px black;
}
li a, li a:visited
{
display: block;
text-decoration: none;
color: white;
width: 100%;
height: 100%;
padding: 0.5em 0;
}
@media screen and (max-width: 992px) {
main
{
width: calc(100% - 32px);
}
}
@media screen and (max-width: 600px) {
li
{
width: 100%;
}
}