65 lines
1.0 KiB
CSS
65 lines
1.0 KiB
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html, body {
|
|
height: 100%;
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
|
|
.wrapper {
|
|
display:flex;
|
|
flex-direction:column;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 32px;
|
|
font-weight: bold;
|
|
margin-bottom: 50px;
|
|
color: #003e3e;
|
|
}
|
|
|
|
.main-content {
|
|
flex-grow: 1;
|
|
padding: 40px;
|
|
display: flex;
|
|
text-align: center;
|
|
background-image: url("index.png");
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-attachment: fixed;
|
|
}
|
|
|
|
button {
|
|
background-color: #A62B1F;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 12px;
|
|
padding: 10px 20px;
|
|
margin-top: 20px;
|
|
width: 200px;
|
|
cursor: pointer;
|
|
font-size: 16px;
|
|
}
|
|
|
|
button::hover {
|
|
background-color: #A62B1F;
|
|
}
|
|
|
|
.adminBtn {
|
|
background-color: #f4f4f4;
|
|
color: #333;
|
|
font-weight: bold;
|
|
width: 110px;
|
|
padding: 10px 0;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.adminBtn::hover {
|
|
color: #A62B1F;
|
|
} |