33 lines
460 B
CSS
33 lines
460 B
CSS
/* styles/options.css */
|
|
|
|
body {
|
|
font-family: sans-serif;
|
|
padding: 10px;
|
|
width: 300px;
|
|
}
|
|
|
|
header h1 {
|
|
font-size: 20px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
label {
|
|
display: block;
|
|
margin-top: 10px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
input[type="text"],
|
|
select {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
button {
|
|
margin-top: 15px;
|
|
padding: 8px;
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
}
|
|
|