Files
website/style.css
2025-03-02 01:00:20 +01:00

89 lines
1.3 KiB
CSS

html, body{
background-color: #1E1E1E;
margin: 0;
overflow-x: hidden;
}
h1,h2,h3,h4,h5,p{
color: #EAEAEA;
/*Family Roboto or Atma ?*/
}
.test{
border: red dotted 2px;
}
#welcome_div{
width: 100vw;
height: 100vh;
margin: 0;
}
#random_citation{
position: absolute;
top: 180px;
left: 65%;
font-size: 2em;
transform:rotate(15deg);
}
#name_div{
margin-top: 10%;
margin-left: 15%;
height: fit-content;
width: fit-content;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
#profile_picture{
width: 300px;
height: 300px;
}
#profile_picture img{
border-radius: 50%;
}
#name_div_right_container{
display: flex;
flex-direction: column;
}
#welcome_text_div{
height: 100%;
width: fit-content;
}
#welcome_text_div h1{
margin-top: 100px;
}
#social_networks{
max-height: 100%;
display: flex;
flex-direction: row;
}
.network{
height: 50px;
width: 50px;
margin-left: 15px;
}
.network img{
border-radius: 50%;
}
.intersection_div{
width: 100vw;
height: 150px;
background-color: #D9D9D9;
}
.intersection_content{
width: 90%;
margin: auto;
display: flex;
align-items: center;
flex-direction: row;
height: 100%;
}
.intersection_content h2{
color: #1E1E1E !important;
}