-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.css
More file actions
72 lines (64 loc) · 1.13 KB
/
Copy pathpopup.css
File metadata and controls
72 lines (64 loc) · 1.13 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
body {
font-family: Arial, sans-serif;
min-width: 15rem;
background-color: #333;
color: white;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: auto;
margin: 0;
max-height: 20rem;
}
#container{
overflow-y: auto;
overflow-x: hidden;
}
#container {
scrollbar-color: #343434 #36454F ;
scrollbar-width: thin;
}
#customTheme {
display: none;
}
h1 {
margin: 1rem;
}
#themeSelector{
margin-left: 1rem;
}
select, button, label {
margin-bottom: 10px;
padding: 10px;
font-size: 14px;
width: 80%;
border-radius: 5px;
border: none;
outline: none;
}
select, input[type="color"] {
background-color: #444;
color: white;
}
button {
background-color: #007bff;
color: white;
cursor: pointer;
transition: background-color 0.3s ease;
margin-top: 2rem;
margin-left:1rem ;
}
button:hover {
background-color: #0056b3;
}
button:active {
background-color: #004085;
}
label {
display: flex;
justify-content: space-between;
width: 100%;
align-items: center;
margin-right: 5rem;
}