quest-rando/style-form.css

58 lines
1.0 KiB
CSS
Raw Normal View History

2024-11-24 11:31:15 +01:00
body {
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 11pt;
background-color: #f4f4f4;
color: #333;
background-image: url(../quest-rando/images/ciel-overlay2.jpg); */
background-attachment: fixed;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
h1 {
color: #090090;
}
h2 {
color: #090090;
}
h3 {
color: #090090;
}
form {
background: #fff;
padding: 2% 3%;
margin-bottom: 20px;
box-shadow: 0 2px 4px grey;
border-radius: 5px;
max-width: 800px;
width: 100%;
}
input[type="text"],
textarea {
font-size: 11pt;
width: 100%;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 4px;
}
button {
background: #3498db;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background: #2980b9;
}