-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
80 lines (71 loc) · 1.57 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
background-color: rgb(0, 0, 0);
color: #fff;
font-family: 'Courier New', Courier, monospace
}
.popup-container{
width: 300px;
height: 360px;
display: flex;
flex-direction: column;
align-items: center;
}
.extension-header{
text-align: center;
padding: 1rem;
}
.main-btn-container img{
width: 100%;
height: 100%;
cursor: pointer;
}
.main-btn-container{
width: 120px;
height: 120px;
margin: 0 auto;
}
.second-container{
width: 100%;
display: block;
/* justify-content: space-evenly; */
/* align-items: center; */
}
.keyword-input{
width: 90%;
height: 80px;
display: block;
margin: 15px auto;
border: 1px solid #fff;
border-radius: 5px;
padding: 0.5rem;
font-size: 1rem;
resize: none;
}
.threshold-container{
width: 100%;
display: flex;
justify-content: space-evenly;
align-items: center;
margin-top: 5px;
}
.threshold-container button{
display: inline-block;
padding: 10px 20px;
border: 2px solid #fff; /* Black border */
background-color: #000; /* White background */
color: #fff; /* Black text */
text-decoration: none;
text-align: center;
font-size: 16px;
border-radius: 5px; /* Rounded corners */
cursor: pointer;
transition: background-color 0.3s, color 0.3s;
}
.threshold-container button:hover{
background-color: #fff; /* White background on hover */
color: #000; /* Black text color on hover */
transition: background-color 0.3s, color 0.3s;
}