Initialer Upload

This commit is contained in:
Florian Otto
2026-04-15 14:30:36 +02:00
commit edc4ec5bf3
33 changed files with 1505 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
/* 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;
}
+49
View File
@@ -0,0 +1,49 @@
/* styles/popup.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"],
textarea {
width: 100%;
box-sizing: border-box;
margin-top: 5px;
}
.actions {
margin-top: 15px;
display: flex;
flex-direction: column;
gap: 5px;
}
button {
padding: 8px;
font-size: 14px;
cursor: pointer;
}
footer {
margin-top: 15px;
font-size: 10px;
text-align: center;
color: #666;
}
#project-banner {
display: none;
}
+35
View File
@@ -0,0 +1,35 @@
/* styles/statistics.css */
body {
font-family: sans-serif;
padding: 10px;
width: 300px;
}
header h1 {
font-size: 20px;
margin-bottom: 10px;
}
#stats p {
font-size: 16px;
margin: 10px 0;
}
#share-option {
margin-top: 20px;
}
button {
padding: 8px;
font-size: 14px;
cursor: pointer;
}
footer {
margin-top: 15px;
font-size: 10px;
text-align: center;
color: #666;
}