126 lines
2.2 KiB
CSS
126 lines
2.2 KiB
CSS
/***** Options CSS for Chrome Extension: Tracking Proxy Helper *****/
|
|
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 20px;
|
|
background-color: #382d3d; /* Hintergrundfarbe der Seite */
|
|
color: white; /* Allgemeine Textfarbe */
|
|
}
|
|
|
|
h1 {
|
|
font-size: 24px;
|
|
margin-bottom: 20px;
|
|
color: #fe6845; /* Farbe für H1 Überschriften */
|
|
}
|
|
|
|
h2 {
|
|
font-size: 20px;
|
|
margin-top: 20px;
|
|
color: #382d3d; /* Farbe für H2 Überschriften */
|
|
}
|
|
|
|
h3 {
|
|
font-size: 20px;
|
|
margin-top: 20px;
|
|
color: white; /* Farbe für H3 Überschriften */
|
|
}
|
|
|
|
.section {
|
|
background-color: #eeeeee; /* Hintergrundfarbe der Kästen */
|
|
border: 1px solid #000000;
|
|
padding: 20px;
|
|
margin-bottom: 20px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.form-group {
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
label {
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
font-weight: bold;
|
|
color: #382d3d; /* Farbe der Labels */
|
|
}
|
|
|
|
input[type="text"],
|
|
textarea {
|
|
width: 100%;
|
|
padding: 8px;
|
|
box-sizing: border-box;
|
|
background-color: #fff; /* Hintergrund der Eingabefelder */
|
|
color: #000; /* Textfarbe in Eingabefeldern */
|
|
border: 1px solid #ccc; /* Rahmen der Eingabefelder */
|
|
}
|
|
|
|
.url-field {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.url-input {
|
|
flex: 1;
|
|
}
|
|
|
|
.regex-checkbox {
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.inline-checkbox {
|
|
display: inline-block;
|
|
margin-left: 10px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
button {
|
|
padding: 10px 15px;
|
|
background-color: #fe6845;
|
|
color: white;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
button.remove-url-field {
|
|
background-color: #382d3d;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
button#add-url-field {
|
|
background-color: #382d3d;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.url-match-label {
|
|
display: block;
|
|
margin-bottom: 10px;
|
|
margin-top: 15px;
|
|
color: #382d3d; /* Farbe für URL Match Labels */
|
|
}
|
|
|
|
.toggle-header {
|
|
cursor: pointer;
|
|
color: #fe6845;
|
|
background-color: #382d3d;
|
|
padding: 5px 10px;
|
|
border-radius: 5px;
|
|
display: inline-block;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
#dev-core .section {
|
|
display: none;
|
|
}
|
|
|
|
#dev-core .section {
|
|
background-color: #ccc7aa;
|
|
}
|
|
|
|
#httpheader {
|
|
padding: 20px;
|
|
background-color: white;
|
|
}
|
|
|
|
/* EOF */
|