22 lines
266 B
CSS
22 lines
266 B
CSS
body {
|
|
margin: 0px;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
background-repeat: repeat-y;
|
|
}
|
|
|
|
.container {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
margin: 0px;
|
|
}
|
|
|
|
.content-social-profile img {
|
|
max-width: 200px;
|
|
max-height: 200px;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
|
|
|