-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
114 lines (92 loc) · 1.9 KB
/
style.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
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
body {
padding: 10px;
background: #c9d6ff; /* fallback for old browsers */
background: -webkit-linear-gradient(
to right,
#e2e2e2,
#c9d6ff
); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(
to right,
#e2e2e2,
#c9d6ff
); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #888;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
button {
border: none;
background-color: transparent;
outline: none;
}
button:hover {
cursor: pointer;
}
.icon {
display: inline-block;
background-size: cover;
width: 20px;
height: 20px;
}
#header {
display: flex;
justify-content: flex-end;
margin-bottom: 20px;
}
.item {
background-color: #fff;
box-shadow: -1px 2px 4px rgba(0, 0, 0, 0.25), 1px 1px 3px rgba(0, 0, 0, 0.1);
max-width: 340px;
padding: 20px;
border-radius: 10px;
margin: 0 auto;
margin-bottom: 10px;
display: flex;
flex-direction: row;
}
.item .text {
max-width: 270px;
flex: 1;
}
/* Icons */
.icon-minimize {
background-image: url(./images/icons/minimize-2.svg);
}
.icon-minimize:hover {
background-image: url(./images/icons/minimize-2-blue.svg);
}
.icon-exit {
background-image: url(./images/icons/x.svg);
}
.icon-exit:hover {
background-image: url(./images/icons/x-red.svg);
}
.icon-clipboard {
background-image: url(./images/icons/clipboard.svg);
}
.icon-clipboard:hover {
background-image: url(./images/icons/clipboard-green.svg);
}
.icon-delete {
background-image: url(./images/icons/trash-2.svg);
}
.icon-delete:hover {
background-image: url(./images/icons/trash-2-red.svg);
}
.icon-delete-all {
background-image: url(./images/icons/delete.svg);
}
.icon-delete-all:hover {
background-image: url(./images/icons/delete-white.svg);
}
/* Icons End */