wyciagniecie css z plikow html

This commit is contained in:
2023-04-24 10:22:17 +02:00
parent d397dfa11f
commit 913af1fc76
9 changed files with 173 additions and 161 deletions

View File

@@ -3,49 +3,8 @@
<head>
<meta charset="UTF-8">
<title>Strona logowania</title>
<link rel="stylesheet" href="/style/login.css" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<style>
body {
background-color: #F2F2F2;
font-family: Arial, sans-serif;
}
#login-box {
background-color: #FFFFFF;
border-radius: 10px;
padding: 20px;
width: 400px;
margin: 0 auto;
margin-top: 100px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
font-size: 28px;
margin-top: 0;
}
input[type=text], input[type=password] {
width: 100%;
padding: 10px;
margin-bottom: 20px;
border: none;
border-radius: 5px;
background-color: #F2F2F2;
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
font-size: 16px;
}
input[type=submit] {
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
padding: 10px;
font-size: 16px;
cursor: pointer;
}
input[type=submit]:hover {
background-color: #3e8e41;
}
</style>
</head>
<body>
<div id="login-box">