Import/Export Prototype

This commit is contained in:
Marcel Pöppe
2024-09-23 19:59:46 +02:00
parent 9141d9e6fb
commit 312e4ae1f5
4 changed files with 85 additions and 9 deletions
+21 -2
View File
@@ -54,8 +54,16 @@ body {
}
.button {
border: 2px solid #101010;
background-color: #101010;
border: 2px solid #5353535c;
background-color: #1010105c;
border-radius: 20px;
margin: 10px;
padding: 10px;
}
.button:hover {
border: 2px solid #5353535c;
background-color: #5353535c;
border-radius: 20px;
margin: 10px;
padding: 10px;
@@ -138,4 +146,15 @@ body {
background-color: #4dc3435c;
font-size: 10;
height: fit-content 100%;
}
.popup_bg {
width: 2000px;
padding: 20px;
box-shadow: 0 2px 10px #7c7c7c;
background: black;
}
.popup-overlay {
background: rgba(0, 0, 0, 0.5);
}