-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.css
More file actions
50 lines (49 loc) · 919 Bytes
/
options.css
File metadata and controls
50 lines (49 loc) · 919 Bytes
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
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
body {
width: 600px;
height: 400px;
margin: 20px auto;
padding: 20px 35px;
box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.option_page_title {
color: #5e6680;
text-align: center;
margin-bottom: 25px;
}
input {
display: block;
width: 100%;
margin-bottom: 7px;
height: 45px;
background: #e8f0fe;
border: none;
outline: none;
border-radius: 5px;
padding: 0 8px;
}
#save-btn {
margin-top: 35px;
width: 100%;
border: none;
outline: none;
background: #21b1eb;
height: 45px;
cursor: pointer;
border-radius: 5px;
color: white;
font-weight: 600;
}
.author {
margin-top: 20px;
font-size: 12px;
color: #b3b7c5;
text-align: center;
}