Last active
March 4, 2025 04:15
-
-
Save AlvisonHunterArnuero/e83c998da614651784da2dab0621524a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,200;1,14..32,200&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap'); | |
*, | |
*::before, | |
*::after { | |
box-sizing: border-box; | |
} | |
* { | |
margin: 0; | |
} | |
body { | |
line-height: 180%; | |
height: 100%; | |
min-height: 100vhmax; | |
width: 100%; | |
background-size: content; | |
background: linear-gradient(90deg, #051937, #002151, #00286c, #002e87, #0a32a1); | |
font-family: "Montserrat", sans-serif; | |
padding: 5px; | |
margin: 5px; | |
} | |
p { | |
font-family: "Montserrat", sans-serif; | |
font-optical-sizing: auto; | |
font-weight: 200; | |
font-style: normal; | |
} | |
li { | |
list-style: circle inside; | |
font-weight: 200; | |
} | |
li strong { | |
font-weight: 400; | |
} | |
.container { | |
display: flex; | |
flex-direction: row; | |
} | |
.container :nth-child(1) { | |
order: 2; | |
} | |
.container :nth-child(2) { | |
order: 1; | |
} | |
.container #header { | |
text-align: center; | |
font-size: 25pt; | |
color: #fffff; | |
} | |
#more-about-me { | |
margin-top: 1rem; | |
font-size: 1.2rem; | |
font-weight: 500; | |
color: #ffffff; | |
} | |
#links { | |
font-size: 1.2rem; | |
color: #ffffff; | |
font-weight: 500; | |
} | |
.social-links { | |
width: 40vw; | |
} | |
.social-links li { | |
display: inline-flex; | |
justify-content: space-between; | |
align-items: center; | |
padding: 0px 10px; | |
} | |
.social-links li a { | |
color: lightblue; | |
} | |
.item { | |
padding: 2%; | |
text-align: justify; | |
justify-content: center; | |
} | |
.item p { | |
font-size: 12pt; | |
color: #ffffff; | |
transition: .2s; | |
} | |
.item p { | |
font-size: 14pt; | |
font-weight: 100; | |
} | |
.item ul li { | |
font-size: 12pt; | |
color: #ffffff; | |
margin-bottom: 5px; | |
transition: .2s; | |
} | |
.profile { | |
display: flex; | |
flex-direction: column; | |
justify-content: center; | |
align-items: center; | |
margin-bottom: 1rem; | |
} | |
.profile img { | |
border-radius: 50%; | |
border: solid #104c85; | |
transition: .7s ease-in-out; | |
width: 200px; | |
height: 200px; | |
border-width: 4px; | |
object-fit: cover; | |
margin-top: 1rem; | |
margin-bottom: 1rem; | |
} | |
.profile img:hover { | |
border-radius: 50%; | |
border: 6px dotted #31adf5; | |
transform: scale(1.05); | |
cursor: pointer; | |
} | |
.profile #name { | |
color: #98c1f2; | |
font-size: 1.2rem; | |
text-transform: uppercase; | |
order: 2; | |
} | |
.profile #title { | |
color: #52bdc9; | |
text-transform: capitalize; | |
font-size: 1rem; | |
order: 3; | |
} |
Author
AlvisonHunterArnuero
commented
Mar 4, 2025
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment