_spread.css
2.31 KB
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
.spread-me-page {
font-size: 12px;
.spread-wrap {
padding: 10px;
.item-card {
width: 252px;
float: left;
height: 180px;
box-sizing: border-box;
border: 1px solid #dedede;
position: relative;
margin-left: 11px;
> p {
text-align: center;
line-height: 1.4;
}
}
.item-card:first-child {
margin-left: 0;
}
.tag {
width: 76px;
height: 24px;
line-height: 24px;
background-color: #000;
color: #fff;
text-align: center;
position: absolute;
font-weight: 300;
}
.card-main {
height: 80px;
line-height: 80px;
padding-top: 30px;
text-align: center;
> * {
display: inline-block;
}
}
.spread-code {
width: 70px;
height: 70px;
}
.spread-id {
font-size: 38px;
}
.spread-url {
width: 94%;
height: 34px;
line-height: 32px;
border: 1px solid #dedede;
background-color: #f5f5f5;
position: relative;
cursor: pointer;
> input {
width: 100%;
height: 100%;
border: 0;
padding: 0 10px;
box-sizing: border-box;
background: none;
}
.succ-tip {
position: absolute;
width: 100%;
height: 32px;
color: #89c54d;
overflow: hidden;
background-color: #f5f5f5;
top: 1px;
display: none;
}
}
}
.my-spread-list {
padding: 10px;
margin-bottom: 10px;
table {
width: 100%;
}
tr {
border: 1px solid #dedede;
}
th {
background-color: #efefef;
line-height: 30px;
text-align: center;
}
td {
line-height: 20px;
padding: 14px 0;
text-align: center;
}
}
}