|
@@ -14,23 +14,19 @@ |
|
@@ -14,23 +14,19 @@ |
14
|
border-radius: 10px;
|
14
|
border-radius: 10px;
|
15
|
padding: 12px 20px;
|
15
|
padding: 12px 20px;
|
16
|
margin-bottom: 20px;
|
16
|
margin-bottom: 20px;
|
17
|
-
|
|
|
18
|
- @include flexbox((display: box, box-align: center), $version: 1);
|
|
|
19
|
-
|
|
|
20
|
- @include flexbox((display: flex, align-items: center));
|
17
|
+ display: flex;
|
|
|
18
|
+ align-items: center;
|
21
|
|
19
|
|
22
|
> div {
|
20
|
> div {
|
23
|
min-height: 40px;
|
21
|
min-height: 40px;
|
24
|
-
|
|
|
25
|
- @include flexbox((box-flex: 1, display: box, bax-align: center), $version: 1);
|
|
|
26
|
-
|
|
|
27
|
- @include flexbox((display: flex, align-items: center));
|
22
|
+ display: flex;
|
|
|
23
|
+ align-items: center;
|
28
|
}
|
24
|
}
|
29
|
|
25
|
|
30
|
.icon {
|
26
|
.icon {
|
31
|
width: 15%;
|
27
|
width: 15%;
|
32
|
|
28
|
|
33
|
- @include flexbox((flex-basis: 15%));
|
29
|
+ flex-basis: 15%;
|
34
|
|
30
|
|
35
|
img {
|
31
|
img {
|
36
|
width: 60px;
|
32
|
width: 60px;
|
|
@@ -50,29 +46,22 @@ |
|
@@ -50,29 +46,22 @@ |
50
|
|
46
|
|
51
|
.app {
|
47
|
.app {
|
52
|
width: 35%;
|
48
|
width: 35%;
|
53
|
-
|
|
|
54
|
- @include flexbox((flex-basis: 35%));
|
|
|
55
|
-
|
49
|
+ flex-basis: 35%;
|
56
|
font-size: 32px;
|
50
|
font-size: 32px;
|
57
|
color: #414141;
|
51
|
color: #414141;
|
58
|
}
|
52
|
}
|
59
|
|
53
|
|
60
|
.hint {
|
54
|
.hint {
|
61
|
width: 45%;
|
55
|
width: 45%;
|
62
|
-
|
|
|
63
|
- @include flexbox((flex-basis: 45%));
|
|
|
64
|
-
|
56
|
+ flex-basis: 45%;
|
65
|
font-size: 24px;
|
57
|
font-size: 24px;
|
66
|
color: #4b4b4b;
|
58
|
color: #4b4b4b;
|
67
|
}
|
59
|
}
|
68
|
|
60
|
|
69
|
.iconfont {
|
61
|
.iconfont {
|
70
|
width: 5%;
|
62
|
width: 5%;
|
71
|
-
|
|
|
72
|
- @include flexbox((box-pack: end), $version: 1);
|
|
|
73
|
-
|
|
|
74
|
- @include flexbox((flex-basis: 5%, justify-content: flex-end));
|
|
|
75
|
-
|
63
|
+ flex-basis: 5%;
|
|
|
64
|
+ justify-content: flex-end;
|
76
|
color: #e0e0e0;
|
65
|
color: #e0e0e0;
|
77
|
font-size: 28px;
|
66
|
font-size: 28px;
|
78
|
}
|
67
|
}
|