2021-10-18 16:21:51 +00:00
|
|
|
/* Style Settings */
|
2022-10-24 14:18:56 +00:00
|
|
|
@import url('../fonts/opensans');
|
2021-10-18 16:21:51 +00:00
|
|
|
|
|
|
|
body {
|
2022-10-17 20:57:05 +00:00
|
|
|
background: url('../images/bg.webp');
|
2021-10-18 16:21:51 +00:00
|
|
|
font-family: 'Open Sans', sans-serif;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
#userPhoto {
|
|
|
|
width: 100px;
|
|
|
|
height: 100px;
|
|
|
|
display: block;
|
|
|
|
margin: 10px auto;
|
|
|
|
border-radius: 20%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#userName {
|
|
|
|
color: #fff;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#userName h1 {
|
|
|
|
font-size: 2rem;
|
|
|
|
font-weight: 300;
|
|
|
|
letter-spacing: 0.2rem;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#userName p {
|
|
|
|
font-weight: 300;
|
|
|
|
margin-top: 5px;
|
|
|
|
text-transform: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
i.fa {
|
|
|
|
margin-right: 0.3rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#links {
|
|
|
|
max-width: 500px;
|
|
|
|
width: auto;
|
|
|
|
display: block;
|
|
|
|
margin: 20px auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.link {
|
|
|
|
display: block;
|
|
|
|
background-color: rgba(66, 110, 255, 0.2);
|
|
|
|
color: #fff;
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
padding: 17px;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 1.2rem;
|
|
|
|
font-weight: 300;
|
|
|
|
transition: all .25s cubic-bezier(.08, .59, .29, .99);
|
|
|
|
border-radius: 10px;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.link:hover {
|
|
|
|
background-color: rgba(255, 255, 255, 0.3);
|
|
|
|
color: #000000;
|
|
|
|
border: none;
|
2022-10-17 20:57:05 +00:00
|
|
|
}
|