-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstore.less
115 lines (76 loc) · 1.65 KB
/
store.less
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
// main: ../test.less
.store_head {
display: flex;
width: 1320px;
height: 120px;
border-right: 1px solid black;
border-bottom: 2px solid @dodgerblue;
}
.stores {
display: flex;
height: 65px;
}
.stores__avatar {
display: flex;
justify-content: space-between;
padding-left: 13px;
padding-top: 15px;
}
.ava {
width: 100px;
height: 100px;
border-radius:50%;
}
.stores__content {
margin-bottom: 3px;
font-size: 1.06rem;
line-height: 1.2;
color: #444;
font-weight: 700;
margin-top: 25px;
margin-left: 10px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.stores__sub {
font-size: .9rem;
color: rgba(43,42,44,0.7);
}
span {
color:@dodgerblue;
font-weight: 300;
}
.button {
margin-left: 910px;
margin-top: 70px;
}
button {
background: dodgerblue;
color:white;
padding: 8px 16px;
font-size: 15px;
cursor: pointer;
border-radius: 3px;
}
.stores__nav {
display: flex;
justify-content: flex-start;
align-items: center;
width: 1320px;
height: 50px;
border-bottom: 1px solid #DCDCDC;
}
.st__link {
font-size: 15px;
font-weight: 800;
color:@dodgerblue;
padding: 15px;
margin-left: 15px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
cursor: pointer;
&:hover {
border-bottom: 3px solid dodgerblue;
padding-bottom: 15px;
border-radius: 2px 2px 2px 2px;
content: "";
}
}