685d9c5312
modified: valitovgaziz/html/style.css new file: valitovgaziz/html/style/social_link.css add socila media links into valitovgaziz's site
28 lines
529 B
CSS
28 lines
529 B
CSS
.social_links_block {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
flex-direction: row;
|
|
|
|
width: 100%;
|
|
height: fit-content;
|
|
}
|
|
|
|
.social_link {
|
|
border: 1px solid;
|
|
border-radius: 50%;
|
|
width: 40px;
|
|
height: 40px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
-webkit-box-shadow: 0px 0px 14px 0px rgba(34, 60, 80, 0.2);
|
|
-moz-box-shadow: 0px 0px 14px 0px rgba(34, 60, 80, 0.2);
|
|
box-shadow: 0px 0px 14px 0px rgba(34, 60, 80, 0.2);
|
|
}
|
|
|
|
.social_link a {
|
|
width: fit-content;
|
|
height: auto;
|
|
}
|