Fix estetico pagina inserimento

This commit is contained in:
2026-01-23 11:46:18 +01:00
parent 1f67e1d4c8
commit 89e0988a14
2 changed files with 52 additions and 10 deletions

View File

@@ -9,7 +9,7 @@
</head> </head>
<body> <body>
<div id="formDiStoGrandissimoCazzo"> <div id="formDiStoGrandissimoCazzo">
<p style="font-size: 36pt; text-align: center;">Inserimento Voti</p> <h1 style="text-align: center;">Inserimento Voti</h1>
<form action="add.php" method="post"> <form action="add.php" method="post">
<label for="name">Nome Alunno:</label> <label for="name">Nome Alunno:</label>
<input type="text" id="name" name="name" required><br> <input type="text" id="name" name="name" required><br>
@@ -81,8 +81,6 @@
<button>Prospetto dei voti</button> <button>Prospetto dei voti</button>
<br><br> <br><br>
<p style="font-size: 11pt; text-align:center;"><a href="https://motherfuckingwebsite.com/">THIS IS A MOTHERFUCKING WEBSITE</a></p>
<br>
</div> </div>
</body> </body>
</html> </html>

View File

@@ -1,15 +1,19 @@
:root{ :root{
--nigga: black; --primary: #2c3e50;
--secondary: #3498db;
--accent: #ecf0f1;
} }
body{ body{
background-color: var(--nigga); background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
background-image: url(img/terry.jpg); min-height: 100vh;
background-size: 200px; margin: 0;
padding: 20px;
} }
body, input, button, select{ body, input, button, select{
font-family: 'Comic Sans MS'; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
font-size: 16pt; font-size: 16px;
} }
#formDiStoGrandissimoCazzo{ #formDiStoGrandissimoCazzo{
@@ -18,4 +22,44 @@ body, input, button, select{
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
padding: 30px; padding: 30px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
} }
input, button, select{
border-radius: 8px;
border: 2px solid #bdc3c7;
padding: 10px 15px;
transition: all 0.3s ease;
}
input{
margin: 10px 0;
}
input:focus, select:focus{
outline: none;
border-color: var(--secondary);
box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}
button{
background-color: var(--secondary);
color: white;
border: none;
cursor: pointer;
font-weight: 600;
}
button:hover{
background-color: #2980b9;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}
/*
label{
margin-right: 15px;
display: inline-flex;
align-items: center;
gap: 8px;
/*