maccounter
71 строка · 1.2 Кб
1.container {
2position: fixed;
3top: 0;
4width: 100vw;
5height: 100vh;
6background-color: var(--color-overlay);
7z-index: 999;
8transition: 0.2s;
9
10display: flex;
11align-items: center;
12justify-content: center;
13}
14
15.modal {
16transition: .2s;
17display: flex;
18flex-direction: column;
19
20padding: var(--size-padding-component);
21
22.header {
23font-size: var(--size-font-title-small);
24display: flex;
25align-items: center;
26justify-content: space-between;
27
28.title {
29margin-right: 60px;
30}
31
32.close {
33cursor: pointer;
34width: 24px;
35height: 24px;
36
37svg {
38width: 100%;
39height: 100%;
40}
41}
42}
43
44.body {
45display: flex;
46margin-top: 30px;
47align-items: center;
48
49.img {
50display: flex;
51align-items: center;
52justify-content: center;
53width: 80px;
54height: 80px;
55border-radius: 50%;
56border: 4px solid var(--color-main);
57overflow: hidden;
58margin-right: 30px;
59}
60
61.info {
62display: flex;
63flex-direction: column;
64font-size: var(--size-font-base);
65
66p:not(:last-child) {
67margin-bottom: 15px;
68}
69}
70}
71}
72