-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
109 lines (92 loc) · 1.64 KB
/
Copy pathstyles.css
File metadata and controls
109 lines (92 loc) · 1.64 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/css?family=Ubuntu&display=swap');
*{
margin: 0;
padding: 0;
list-style: none;
box-sizing: border-box;
font-family: 'Ubuntu', sans-serif;
}
body{
background: #f7f8fc;
color: #555555;
}
.wrapper{
width: 1200px;
margin: 50px auto;
}
.button_grp ul{
display: flex;
}
.button_grp ul li{
background: #fff;
margin: 10px;
padding: 10px 15px;
min-width: 80px;
text-align: center;
border-radius: 5px;
cursor: pointer;
transition: all 0.2s ease;
box-shadow: 1px 1px 3px rgba(0,0,0,0.125);
}
.button_grp ul li.active,
.button_grp ul li:hover{
background: #0000fe;
color: #fff;
}
.item_grp{
margin-top: 50px;
display: flex;
flex-wrap: wrap;
}
.item_grp .item{
width: 125px;
height: auto;
background: #fff;
margin: 10px;
border-radius: 5px;
padding: 15px;
text-align: center;
box-shadow: 1px 1px 3px rgba(0,0,0,0.125);
}
.item_grp .item .icon_wrp{
display: flex;
align-items: center;
height: 85px;
}
.item_grp .item .icon{
background: url('filter_image.png') no-repeat 0 0;
width: 64px;
height: 52px;
display: inline-block;
margin: 0 auto;
}
.item_grp .item.folders .icon{
background-position: 0 0;
width: 64px;
height: 52px;
}
.item_grp .item.files .icon{
background-position: 0 -66px;
width: 48px;
height: 64px;
}
.item_grp .item.images .icon{
background-position: 0 -146px;
width: 64px;
height: 50px;
}
.item_grp .item.sheets .icon{
background-position: 0 -210px;
width: 64px;
height: 60px;
}
.item_grp .item.pdfs .icon{
background-position: 0 -282px;
width: 56px;
height: 64px;
}
.item_grp .item.documents .icon{
background-position: 0 -363px;
width: 64px;
height: 62px;
}