web-page/css/style.css

128 lines
2.9 KiB
CSS
Raw Normal View History

@font-face {
font-family: ProblematicPiercer;
src: url(../css/ProblematicPiercer.ttf);
}
2023-04-29 23:32:22 +00:00
@font-face {
font-family: Caveat;
src: url(../css/Caveat-Regular.ttf);
}
2023-05-01 23:55:04 +00:00
@font-face {
font-family: Whypo-rrey;
src: url(../css/Whypo-rrey.ttf);
}
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden;
flex-direction: column;
color: #333333;
margin: 0;
opacity: 0;
font-family: ProblematicPiercer;
2023-05-02 00:32:10 +00:00
cursor: default;
}
2023-04-29 23:32:22 +00:00
div.row {
display: flex;
flex-direction: row;
2023-05-01 23:55:04 +00:00
width: 1000px;
align-items: center;
2023-04-29 23:32:22 +00:00
}
div.photo {
border-radius: 300px;
box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
background-image: url(../images/favicon.jpg);
width: 300px;
height: 300px;
background-size: contain;
2023-05-01 23:55:04 +00:00
margin-right: 80px;
2023-04-29 23:32:22 +00:00
}
div.info {
display: flex;
2023-05-01 23:55:04 +00:00
width: 620px;
2023-04-29 23:32:22 +00:00
flex-direction: column;
}
div.title {
font-size: 50px;
display: flex;
align-items: center;
justify-content: center;
}
div.bio {
font-family: Caveat;
font-size: 25px;
text-align: justify;
2023-05-01 23:55:04 +00:00
}
div.social {
display: flex;
justify-content: space-between;
margin-top: 100px;
2023-07-26 13:11:33 +00:00
width: 900px;
2023-05-01 23:55:04 +00:00
}
.social div {
width: 50px;
height: 50px;
background-repeat: no-repeat;
2023-05-01 23:55:04 +00:00
cursor: pointer;
transition: transform 0.2s;
background-size: 100px auto;
2023-05-01 23:55:04 +00:00
}
.social div:hover {
transform: scale(1.5);
background-position: -50px 0;
2023-05-01 23:55:04 +00:00
}
.mastodon { background-image: url(../images/social/mastodon.png); }
.twitter { background-image: url(../images/social/twitter.png); }
.linkedin { background-image: url(../images/social/linkedin.png); }
.facebook { background-image: url(../images/social/facebook.png); }
.instagram { background-image: url(../images/social/instagram.png); }
.git { background-image: url(../images/social/git.png); }
.github { background-image: url(../images/social/github.png); }
.telegram { background-image: url(../images/social/telegram.png); }
.solus { background-image: url(../images/social/linux.png); }
.blog { background-image: url(../images/social/blog.png); }
.ftp { background-image: url(../images/social/ftp.png); }
2023-07-26 11:38:30 +00:00
.band { background-image: url(../images/social/band.png); }
2023-07-26 13:09:23 +00:00
.soundcloud { background-image: url(../images/social/soundcloud.png); }
.email { background-image: url(../images/social/email.png); }
2024-05-29 11:31:53 +00:00
.matrix { background-image: url(../images/social/matrix.png); }
2023-05-01 23:55:04 +00:00
.tooltip {
position: relative;
display: inline-block;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
left: 50%;
margin-left: -60px;
color: #000000;
text-align: center;
padding: 5px 0;
position: absolute;
z-index: 1;
top: 110%;
opacity: 0;
transition: opacity 1s;
font-family: Whypo-rrey;
}
.tooltip:hover .tooltiptext {
visibility: visible;
opacity: 1;
}