-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.css
71 lines (60 loc) · 1.12 KB
/
app.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
.tp-main {
display: flex;
width: 100%;
}
.tp-custom {
display: flex;
flex: 1;
align-items: center;
padding: 15px;
background: #fff;
margin-top: 10px !important;
margin-bottom: 10px !important;
cursor: pointer;
transition: all .3s;
border: 1px solid #f1f1f1;
text-decoration: none;
}
.tp-custom:first-child {
margin-right: 20px;
}
.tp-custom:hover {
transform: translateY(-6px);
box-shadow: 0px 1px 2px 1px #efefef;
}
.tp-logo {
width: 50px;
height: 50px;
margin-right: 20px;
background: #fff;
box-shadow: 0px 1px 1px 2px #efefef;
border-radius: 10px;
}
.tp-content h5 {
margin: 0;
color: #101010;
font-weight: 500;
font-size: 20px;
line-height: normal;
}
.tp-content p {
margin: 0;
color: #2980fe;
line-height: normal;
max-width: 327px;
word-wrap: break-word;
}
.has-mask .mask {
opacity: 0 !important;
}
@media screen and (max-width: 767px) {
.tp-main {
display: block;
}
.tp-custom:first-child {
margin-right: 0;
}
.ask-code {
text-align: center;
}
}