2022-05-17 07:44:09 +03:00
|
|
|
.logo {
|
2022-05-18 01:28:56 +03:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
overflow: hidden;
|
2022-05-17 07:44:09 +03:00
|
|
|
width: 120px;
|
2022-05-18 01:28:56 +03:00
|
|
|
height: 120px;
|
2022-05-17 07:44:09 +03:00
|
|
|
border-radius: 50%;
|
|
|
|
border-width: 3px;
|
|
|
|
border-style: solid;
|
|
|
|
border-color: var(--theme-primary-color);
|
|
|
|
background-color: var(--theme-background-secondary);
|
2022-05-18 01:28:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
|
|
|
width: 90%;
|
|
|
|
height: 90%;
|
|
|
|
border-radius: 50%;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.image {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background-size: cover;
|
|
|
|
background-position: center;
|
|
|
|
overflow: hidden;
|
2022-05-17 07:44:09 +03:00
|
|
|
}
|