-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.css
More file actions
115 lines (107 loc) · 2.01 KB
/
popup.css
File metadata and controls
115 lines (107 loc) · 2.01 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
109
110
111
112
113
114
115
/* popup.css */
body {
border-radius: 30px;
background-color: #2b2b2b; /* Dark background color */
color: #ffffff; /* Light text color */
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
padding: 20px;
}
.container {
display: flex;
flex-direction: column;
justify-content: space-between;
width: 400px;
}
.logo {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.logo img {
width: 48px;
}
.title {
color: #ff5733;
font-weight: bold;
/* position: fixed; */
font-size: 1.75rem;
line-height: 2.5rem;
text-align: center;
}
.fields {
background-color: #3a3a3a; /* Slightly lighter background for fields */
padding: 20px;
margin-bottom: 20px;
border-radius: 8px;
}
.fields div {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 0;
}
.field_span {
font-weight: bold;
font-size: 1rem;
}
.value_span {
font-size: 1rem;
margin-right: 1rem;
}
.delete_btn {
background-color: #202020; /* Button color */
color: #ffffff; /* Light text color */
border: none;
padding: 5px 10px;
border-radius: 4px;
cursor: pointer;
}
input[type="text"],
button {
background-color: #4b4b4b; /* Darker background for input fields and buttons */
color: white;
border: none;
padding: 10px;
margin-bottom: 10px;
border-radius: 4px;
}
input[type="text"]::placeholder {
color: #cbd5e0; /* Lighter placeholder text color */
}
button {
cursor: pointer;
}
.newInput {
display: flex;
display: flex;
gap: 0.5rem;
/* flex-direction: column; */
align-items: center;
justify-content: center;
text-align: center;
/* position: fixed; */
}
.title_add {
font-size: 18px;
text-align: center;
margin-bottom: 4px;
}
.buttons {
display: flex;
gap: 0.5rem;
justify-content: center;
align-items: center;
font-weight: 600;
}
.buttons button {
background-color: #ff5733;
color: white;
}
.holder {
display: flex;
justify-content: center;
align-items: center;
}