generated from hjess/PythonTemplateProject
Sync
All checks were successful
Build, Push, and Deploy to Nomad / docker-nomad (push) Successful in 37s
All checks were successful
Build, Push, and Deploy to Nomad / docker-nomad (push) Successful in 37s
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
@charset "UTF-8";
|
||||
@import 'fontawesome-all.min.css';
|
||||
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,400italic,600italic|Roboto+Slab:400,700");
|
||||
/*
|
||||
@@ -2492,16 +2493,22 @@ button:disabled,
|
||||
padding: 20px;
|
||||
border-radius: 5px;
|
||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
|
||||
width: 400px;
|
||||
width: 90%; /* Sæt bredden til 80% af skærmens bredde */
|
||||
height: 90%;
|
||||
text-align: center;
|
||||
z-index: 50000;
|
||||
z-index: 50000; /* Content stays above the blurred overlay */
|
||||
margin: 10% auto; /* Centrer modalen horisontalt og tilføj vertikal afstand */
|
||||
}
|
||||
|
||||
.open {
|
||||
padding: -20px;
|
||||
margin: -10% auto; /* Centrer modalen horisontalt og tilføj vertikal afstand */
|
||||
transform: rotate(15deg);
|
||||
}
|
||||
|
||||
.open_inv {
|
||||
padding: -20px;
|
||||
margin: -10% auto; /* Centrer modalen horisontalt og tilføj vertikal afstand */
|
||||
transform: rotate(-15deg);
|
||||
}
|
||||
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -28,16 +28,25 @@ $modal-content-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
|
||||
padding: 20px;
|
||||
border-radius: 5px;
|
||||
box-shadow: $modal-content-shadow;
|
||||
width: 400px;
|
||||
width: 90%; /* Sæt bredden til 80% af skærmens bredde */
|
||||
height: 90%;
|
||||
// max-width: 1200px; /* Tilføj en maks-bredde for store skærme */
|
||||
text-align: center;
|
||||
z-index: $modal-content-z-index; // Content stays above the blurred overlay
|
||||
z-index: $modal-content-z-index; /* Content stays above the blurred overlay */
|
||||
margin: 10% auto; /* Centrer modalen horisontalt og tilføj vertikal afstand */
|
||||
}
|
||||
|
||||
// Rotating buttons
|
||||
.open {
|
||||
padding: -20px;
|
||||
margin: -10% auto; /* Centrer modalen horisontalt og tilføj vertikal afstand */
|
||||
|
||||
transform: rotate(15deg); // Rotates button 15 degrees clockwise
|
||||
}
|
||||
|
||||
.open_inv {
|
||||
padding: -20px;
|
||||
margin: -10% auto; /* Centrer modalen horisontalt og tilføj vertikal afstand */
|
||||
|
||||
transform: rotate(-15deg); // Rotates button 15 degrees counterclockwise
|
||||
}
|
||||
Reference in New Issue
Block a user