-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
55 lines (54 loc) · 964 Bytes
/
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
body{
background-color: #444;
color: #ffffff;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
margin: 0;
padding: 0;
}
main{
margin: 0 auto;
max-width: 800px;
padding: 20px;
}
.form-group{
margin: 10px 0;
display: flex;
flex-direction: column;
}
.form-group label{
margin-bottom: 5px;
}
.form-group input{
padding: 5px;
border: none;
background-color: #222;
color: #ffffff;
}
.form-group input:focus{
outline: none;
}
.form-group select{
padding: 5px;
border: none;
background-color: #222;
color: #ffffff;
}
.actions{
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 10px;
}
.actions .btn{
padding: 5px 10px;
background-color: blueviolet;
color: #ffffff;
cursor: pointer;
outline: none;
transition: all 0.3s ease;
}
.actions .btn:hover{
background-color: #ffffff;
color: blueviolet;
}