-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpopup.css
83 lines (70 loc) · 1.31 KB
/
popup.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
html {
height: 100px;
width: 300px;
}
button {
font-family: "Courier New";
margin-top: 10px;
margin-right: 10px;
margin-bottom: 5px;
border-color: lavender;
border-radius: 0px;
padding: 8px 8px;
background-color: lavender;
font-size: 14px;
box-shadow: 0 4px lightgray;
outline: none;
border-radius: .5em;
}
button:hover {
background-color: lightcyan;
border-color: lightsteelblue;
box-shadow: 0 4px lightsteelblue;
}
button:active {
box-shadow: 0 2px lightsteelblue;
transform: translateY(2px);
}
header {
color: darkslategray;
font-family: "Courier New";
font-weight: bolder;
font-size: 28px;
margin-top: 30px;
}
header:hover {
background: lightcyan;
}
p {
color: darkslategray;
font-family: "Courier New";
font-size: 14px;
}
p:hover {
font-weight: bold;
}
div {
border-color: lightcyan;
}
.box {
padding-top: 15px;
padding-bottom: 10px;
background-color: lavender;
border-bottom: 2px solid gray;
border-radius: .5em;
}
.box:hover {
font-weight: bold;
background: lightcyan;
border-bottom: 2px solid lightsteelblue;
}
.box.over {
border: 2px dotted #666;
}
.dropzones {
display: grid;
grid-template-columns: repeat(1, 1fr);
}
[draggable] {
user-select: none;
}