-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrowcolumn.css
121 lines (121 loc) · 2.39 KB
/
rowcolumn.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
:root {
--r: right;
--l: left;
--c: center;
--fs: flex-start;
--fe: flex-end;
--colorM: rgba(240, 81, 62, 1.0);
--colorL: rgba(240, 81, 62, 0.5)
}
.maincolor{
color: var(--colorM);
}
.lightcolor{
color: var(--colorL);
}
@media only screen and (orientation: portrait) {
.p-tal {
text-align: left;
}
.p-tar {
text-align: right;
}
.p-tac {
text-align: center;
}
.p-taj {
text-align: justify;
}
.p-bl, .p-tl, .p-br, .p-tr, .p-bc, .p-tc, .p-lc, .p-rc, .p-cc {
display: flex;
}
.p-bl {
align-items: var(--fe);
justify-content: var(--l);
}
.p-tl {
align-items: var(--fs);
justify-content: var(--l);
}
.p-br {
align-items: var(--fe);
justify-content: var(--r);
}
.p-tr {
align-items: var(--fs);
justify-content: var(--r);
}
.p-bc {
align-items: var(--fe);
justify-content: var(--c);
}
.p-tc {
align-items: var(--fs);
justify-content: var(--c);
}
.p-lc {
align-items: var(--c);
justify-content: var(--l);
}
.p-rc {
align-items: var(--c);
justify-content: var(--r);
}
.p-cc {
align-items: var(--c);
justify-content: var(--c);
}
}
@media only screen and (orientation: landscape) {
.l-tal {
text-align: left;
}
.l-tar {
text-align: right;
}
.l-taj {
text-align: justify;
}
.l-tac {
text-align: center;
}
.l-bl, .l-tl, .l-br, .l-tr, .l-bc, .l-tc, .l-lc, .l-rc, .l-cc {
display: flex;
}
.l-bl {
align-items: var(--fe);
justify-content: var(--l);
}
.l-tl {
align-items: var(--fs);
justify-content: var(--l);
}
.l-br {
align-items: var(--fe);
justify-content: var(--r);
}
.l-tr {
align-items: var(--fs);
justify-content: var(--r);
}
.l-bc {
align-items: var(--fe);
justify-content: var(--c);
}
.l-tc {
align-items: var(--fs);
justify-content: var(--c);
}
.l-lc {
align-items: var(--c);
justify-content: var(--l);
}
.l-rc {
align-items: var(--c);
justify-content: var(--r);
}
.l-cc {
align-items: var(--c);
justify-content: var(--c);
}
}