-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgridlist.css
More file actions
108 lines (100 loc) · 1.75 KB
/
Copy pathgridlist.css
File metadata and controls
108 lines (100 loc) · 1.75 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
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
*{
font-family: 'Roboto', sans-serif;
list-style: none;
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background: #ebecf1;
color: #b3b9b9;
}
.wrapper{
width: 800px;
margin: 50px auto;
}
.links{
margin-bottom: 20px;
background: #fff;
padding: 15px;
border-radius: 3px;
}
.links ul{
display: flex;
justify-content: center;
}
.links ul li{
margin: 0 15px;
font-weight: 600;
text-transform: uppercase;
font-size: 20px;
letter-spacing: 3px;
cursor: pointer;
}
.links ul li:hover,
.links ul li.active{
color: #4abd4a;
}
.view_item img{
width: 100px;
}
.view_main{
background: #fff;
border-radius: 3px;
padding: 15px;
}
.list_view, .view_item{
border: 2px solid #7a7a7a;
margin: 10px;
padding: 10px 20px;
display: flex;
align-items: center;
border-radius: 6px;
}
.list_view, .view_item:last-child{
margin-bottom: 0;
}
.list_view, .view_item, .vi_left{
margin-right: 25px;
}
.view_item, .tittle{
font-weight: 600;
}
.view_item, .content{
margin: 5px 0;
font-size: 14px;
line-height: 22px;
font-weight: 200;
}
.view_item .btn{
width: 125px;
background: #4abd3e;
padding: 8px 5px;
border-radius: 3px;
color: #fff;
text-align: center;
font-weight: 200;
cursor: pointer;
}
.view_item .btn:hover{
background: #3bd62b;
}
.grid-view{
width: 100%;
}
.grid-view .view_item {
display: inline-block;
border: 2px solid #7a7a7a;
border-radius: 6px;
width: 230px;
padding: 25px;
text-align: center;
margin: 10px;
}
.grid-view .view_item .vi_left{
margin-bottom: 10px;
}
.grid-view .view_item .btn{
margin: 0 auto;
}