-
Notifications
You must be signed in to change notification settings - Fork 0
/
lookup.css
55 lines (48 loc) · 936 Bytes
/
lookup.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
#popup-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
}
#definition-box {
background: white;
padding: 20px;
border-radius: 8px;
max-width: 400px;
text-align: center;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
#cancel {
margin-top: 20px;
padding: 10px 20px;
background-color: #ff6666;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
#cancel:hover {
background-color: #ff4d4d;
}
@media (max-width: 500px) {
#definition-box {
padding: 15px;
max-width: 90%;
}
#cancel {
width: 100%;
}
}
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
#definition {
font-size: 16px;
}