blob: 6b335d047dfbff0cc9fd8aa8dac546acee348694 [file] [log] [blame]
Lokesh Yadav08ddd9d2022-07-28 14:40:30 +05301.at-section__title {
2 margin: 4rem 0 70px;
3 color: #000;
4 font-family: "Roboto", sans-serif;
5 font-size: 3.5rem;
6 font-weight: 300;
7 line-height: 2.625rem;
8 text-align: center;
9}
10.at-grid {
11 display: flex;
12 flex-direction: row;
13 flex-wrap: wrap;
14 background: #fff;
15 border: 1px solid #e2e9ed;
16}
17.at-grid[data-column="1"] .at-column {
18 width: 100%;
19 max-width: 100%;
20 min-width: 100%;
21 flex-basis: 100%;
22}
23.at-grid[data-column="2"] .at-column {
24 width: 50%;
25 max-width: 50%;
26 min-width: 50%;
27 flex-basis: 50%;
28}
29.at-grid[data-column="3"] .at-column {
30 width: 33.3333333333%;
31 max-width: 33.3333333333%;
32 min-width: 33.3333333333%;
33 flex-basis: 33.3333333333%;
34}
35.at-grid[data-column="4"] .at-column {
36 width: 25%;
37 max-width: 25%;
38 min-width: 25%;
39 flex-basis: 25%;
40}
41.at-grid[data-column="5"] .at-column {
42 width: 20%;
43 max-width: 20%;
44 min-width: 20%;
45 flex-basis: 20%;
46}
47.at-grid[data-column="6"] .at-column {
48 width: 16.6666666667%;
49 max-width: 16.6666666667%;
50 min-width: 16.6666666667%;
51 flex-basis: 16.6666666667%;
52}
53.at-grid[data-column="7"] .at-column {
54 width: 14.2857142857%;
55 max-width: 14.2857142857%;
56 min-width: 14.2857142857%;
57 flex-basis: 14.2857142857%;
58}
59.at-grid[data-column="8"] .at-column {
60 width: 12.5%;
61 max-width: 12.5%;
62 min-width: 12.5%;
63 flex-basis: 12.5%;
64}
65.at-grid[data-column="9"] .at-column {
66 width: 11.1111111111%;
67 max-width: 11.1111111111%;
68 min-width: 11.1111111111%;
69 flex-basis: 11.1111111111%;
70}
71.at-column {
72 z-index: 0;
73 position: relative;
74 background: #fff;
75 box-shadow: 0 0 0 1px #e2e9ed;
76 padding: 10px;
77 box-sizing: border-box;
78 transition: box-shadow 0.2s ease, transform 0.2s ease, z-index 0s 0.2s ease;
79}
80.at-column:before {
81 content: "";
82 display: block;
83 padding-top: 100%;
84}
85
86.at-column .at-social {
87 margin: 16px 0 0;
88 opacity: 1;
89}
90@media (max-width: 800px) {
91 .at-column {
92 width: 50% !important;
93 max-width: 50% !important;
94 min-width: 50% !important;
95 flex-basis: 50% !important;
96 }
97}
98@media (max-width: 600px) {
99 .at-column {
100 width: 100% !important;
101 max-width: 100% !important;
102 min-width: 100% !important;
103 flex-basis: 100% !important;
104 }
105}
106.at-user {
107 position: absolute;
108 top: 50%;
109 left: 0;
110 width: 100%;
111 transform: translate(0, -50%);
112 text-align: center;
113}
114.at-user__avatar {
115 width: 98px;
116 height: 98px;
117 border-radius: 100%;
118 margin: 0 auto 20px;
119 overflow: hidden;
120}
121.at-user__avatar img {
122 display: block;
123 width: 100%;
124 max-width: 100%;
125}
126.at-user__name {
127 color: #313435;
128 font-family: "Roboto", sans-serif;
129 font-size: 1.5rem;
130 font-weight: 500;
131 line-height: 2.625rem;
132}
133.at-user__title {
134 color: #6f808a;
135 font-family: "Roboto", sans-serif;
136 font-size: 0.875rem;
137 line-height: 2.375rem;
138}
139.at-social {
140 margin: 0 0 -18px;
141 opacity: 0;
142 transition: margin 0.2s ease, opacity 0.2s ease;
143}
144.at-social__item {
145 display: inline-block;
146 margin: 0 10px;
147}
148.at-social__item a {
149 display: block;
150}
151.at-social__item svg {
152 fill: #515f65;
153 display: block;
154 height: 18px;
155 transition: fill 0.2s ease;
156}
157.at-social__item svg {
158 fill: #788d96;
159}
160
161.container {
162 max-width: 1170px;
163 width: 100%;
164 padding: 0 20px;
165 box-sizing: border-box;
166 transform-origin: top center;
167 transform: scale(0.8);
168}