2024-01-02 02:31:44 +01:00
|
|
|
div.home-container {
|
2023-12-25 02:39:41 +01:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
2023-12-24 18:29:23 +01:00
|
|
|
|
2023-12-25 02:39:41 +01:00
|
|
|
div.home {
|
|
|
|
margin: 35% auto;
|
|
|
|
text-align: center;
|
2023-12-24 18:29:23 +01:00
|
|
|
|
2023-12-25 02:39:41 +01:00
|
|
|
h1 {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 4rem;
|
|
|
|
color: var(--fgColor);
|
|
|
|
background-color: var(--bgColor);
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 650px) {
|
|
|
|
div.home {
|
|
|
|
margin: auto auto;
|
2023-12-24 18:29:23 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-02 02:52:40 +01:00
|
|
|
.social-icon {
|
2023-12-24 18:29:23 +01:00
|
|
|
padding: .2em .3em 0 .3em;
|
|
|
|
font-size: 32px;
|
2024-01-02 02:52:40 +01:00
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&-container {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-menu {
|
|
|
|
position: absolute;
|
|
|
|
|
|
|
|
display: none;
|
|
|
|
opacity: 0;
|
|
|
|
transition: all 0.15s ease-out 0.15s;
|
|
|
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
|
|
|
left: 50%;
|
|
|
|
transform: translateX(-50%);
|
|
|
|
top: 100%;
|
|
|
|
|
|
|
|
z-index: 10;
|
|
|
|
|
|
|
|
&-arrow {
|
|
|
|
margin: 0 auto;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
border-left: 4px solid transparent;
|
|
|
|
border-right: 4px solid transparent;
|
|
|
|
border-bottom: 4px solid var(--metaColor);
|
2024-02-01 21:53:32 +01:00
|
|
|
padding-top: .5em;
|
2024-01-02 02:52:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&-inner {
|
2024-02-01 21:53:32 +01:00
|
|
|
padding-top: .5em;
|
|
|
|
font-weight: bold;
|
2024-01-02 02:52:40 +01:00
|
|
|
position: relative;
|
2024-02-01 21:53:32 +01:00
|
|
|
padding: .4em 1em;
|
|
|
|
border: 2px dashed var(--metaColor);
|
|
|
|
border-radius: 0.8rem;
|
2024-01-02 02:52:40 +01:00
|
|
|
|
|
|
|
&:before {
|
|
|
|
content: "";
|
|
|
|
border-color: transparent;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
z-index: -1;
|
|
|
|
box-shadow: 0 0 20px 1px #000;
|
2024-02-01 21:53:32 +01:00
|
|
|
border-radius: 0.8rem;
|
2024-01-02 02:52:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.nolink:hover .social-icon-menu {
|
|
|
|
display: inline-block;
|
|
|
|
opacity: 1;
|
2023-12-24 18:29:23 +01:00
|
|
|
}
|
2023-12-25 02:39:41 +01:00
|
|
|
|