-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
112 lines (92 loc) · 1.51 KB
/
index.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
@keyframes textAnimation {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.toolbarTitle {
text-align: center;
}
.flexContainer {
display: flex;
flex-wrap: wrap;
}
.leftContainer {
width: 100%;
}
.rightContainer {
width: 100%;
}
.expressionContainer {
margin: 1rem;
display: flex;
}
.inputItemContainer {
margin-right: 1rem;
width: -webkit-fill-available;
}
.cardFullContainer {
padding: 1rem;
}
.cardContainer {
display: grid;
animation: myanimation 1.5s;
transition: all 2s ease-in;
}
.cardContent {
animation: myanimation 1.5s;
}
.parseRulesContainer {
margin: 1rem;
padding: 1rem;
}
.borderBottom {
border-bottom: 1px solid;
margin-top: 1rem;
margin-bottom: 1rem;
}
.tableContainer {
padding: 0;
border: 1px solid;
}
.columnCell {
width: 10%;
text-align: center;
height: 25px !important;
justify-content: center;
display: flex;
align-items: center;
border: 1px solid;
}
.tableTitleText {
text-align: center;
}
@media screen and (min-width: 576px) {
.flexContainer {
flex-wrap: nowrap;
}
.leftContainer {
width: 50%;
}
.rightContainer {
width: 50%;
}
}
@media screen and (min-width: 768px) {
.leftContainer {
width: 40%;
}
.rightContainer {
width: 60%;
}
}
@media screen and (min-width: 992px) {
.leftContainer {
width: 35%;
}
.rightContainer {
width: 65%;
}
}