Files
Spik-en-span/style.css

88 lines
1.2 KiB
CSS

#ticketForm {
max-width: 500px;
margin: 0 auto;
}
#qrCodeContainer {
margin-top: 20px;
}
.body {
margin: 0;
font-family: Arial, sans-serif;
}
.navbar {
display: flex;
align-items: right;
justify-content: right;
background-color: #000;
padding: 10px 20px;
}
.logo {
height: 50px;
position: absolute;
left: 20px;
}
.nav-links {
list-style: none;
padding: 0;
display: flex;
margin-right: 15px;
}
.nav-links li {
margin: 0 15px;
}
.nav-links a {
text-decoration: none;
color: rgb(0, 0, 0);
font-size: 18px;
}
.section{
background-color: #000;
}
.size {
width: 33.33%;
height: 25%;
}
.item-container {
display: flex;
justify-content: space-between;
margin-top: 30px;
}
.item {
flex: 0 0 48%;
border: 1px solid #ddd;
border-radius: 5px;
padding: 15px;
text-align: center;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.item img {
max-width: 100%;
height: auto;
margin-bottom: 15px;
}
.item h5 {
margin-bottom: 10px;
}
.item p {
margin-bottom: 15px;
}
.item button {
width: 100%;
}