-
Notifications
You must be signed in to change notification settings - Fork 1
/
25.css
57 lines (57 loc) · 803 Bytes
/
25.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
.AE {
position: relative;
display: flex;
min-height: 100%;
align-items: center;
justify-content: start;
color: var(--A);
flex-direction: column;
}
[dir] .AE {
padding: 14px;
background-color: var(--X);
}
.AF {
display: block;
width: 80px;
height: 80px;
position: relative;
}
[dir] .AF {
margin-top: 14px;
}
.AG {
}
.AH {
font-weight: 600;
display: flex;
align-items: center;
justify-content: center;
}
.AI {
color: var(--T);
}
[dir] .AI {
text-align: center;
}
@media (max-height: 250px) {
[dir="ltr"] .AE {
padding-left: 120px;
}
[dir="rtl"] .AE {
padding-right: 120px;
}
.AF {
position: absolute;
top: 5px;
}
[dir="ltr"] .AF {
left: 20px;
}
[dir="rtl"] .AF {
right: 20px;
}
[dir] .AI {
text-align: start;
}
}