2024-08-27 22:13:04 +00:00
|
|
|
@import "tailwindcss/base";
|
|
|
|
@import "tailwindcss/components";
|
|
|
|
@import "tailwindcss/utilities";
|
|
|
|
|
2024-09-01 21:29:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
font-family: Arial, sans-serif;
|
|
|
|
background-color: #f7f7f7;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
height: 100vh;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
header {
|
|
|
|
width: 100%;
|
|
|
|
background-color: #0d1547;
|
|
|
|
padding: 15px 0;
|
|
|
|
text-align: center;
|
|
|
|
color: rgb(255, 241, 233);
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: bold;
|
|
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 1000;
|
|
|
|
}
|
|
|
|
.login-container {
|
|
|
|
background-color: #fff;
|
|
|
|
padding: 20px;
|
|
|
|
border-radius: 8px;
|
|
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
|
|
width: 300px;
|
|
|
|
}
|
|
|
|
h2 {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
color: #333;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.input-group {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
.input-group label {
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
color: #555;
|
|
|
|
}
|
|
|
|
.input-group input {
|
|
|
|
width: 100%;
|
|
|
|
padding: 10px;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
.login-button {
|
|
|
|
width: 100%;
|
|
|
|
padding: 10px;
|
|
|
|
background-color: #0d1547;
|
|
|
|
color: #fff;
|
|
|
|
border: none;
|
|
|
|
border-radius: 4px;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
.login-button:hover {
|
|
|
|
background-color: #0d1547;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gallery-container {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
|
|
|
|
grid-gap: 10px;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
.gallery-item {
|
|
|
|
background-color: #fff;
|
|
|
|
padding: 10px;
|
|
|
|
border-radius: 8px;
|
|
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.gallery-item img {
|
|
|
|
max-width: 100%;
|
|
|
|
height: auto;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
.gallery-item p {
|
|
|
|
margin-top: 10px;
|
|
|
|
font-size: 14px;
|
|
|
|
color: #555;
|
|
|
|
}
|