Teste
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

145 lines
2.3 KiB

@import url('./menu.css');
body {
margin: 0;
}
h1 {
text-align: center;
}
.eventos-container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
width: 100vw;
}
footer {
display: flex;
align-items: center;
position: fixed;
bottom: 0;
height: 80px;
text-align: center;
margin-inline: 20px;
background-color: #fff;
}
.btn-send, .btn-modal {
font-size: 16px;
font-weight: bold;
width: 120px;
height: 40px;
margin-bottom: 10px;
margin-top: 15px;
border-radius: 5px;
cursor: pointer;
background-color: #734bd1;
color: #fff;
border: none;
transition-duration: 0.4s;
}
.btn-modal {
margin-top: 50px;
}
button:hover {
background-color: #9466ff;
}
iframe {
width: 100%;
height: 50vh;
position: relative;
margin: 0;
border: none;
}
.modal-content {
display: none;
position: absolute;
z-index: 1;
background-color: #000;
opacity: 0.5;
height: 100vh;
width: 100vw;
bottom: 0;
}
.form-container {
display: none;
flex-direction: column;
justify-content: center;
position: absolute;
top: 20vh;
z-index: 2;
background-color: #fff;
border-radius: 10px;
border: 4px solid #734bd1;
min-height: 320px;
width: 500px;
}
.head-form {
display: flex;
align-items: center;
justify-content: space-between;
margin-inline: 10px;
}
.form-title {
font-size: 25px;
font-weight: bold;
color: #734bd1;;
}
.close {
font-size: 40px;
font-weight: bold;
cursor: pointer;
transform: rotate(45deg);
}
.send-message {
display: none;
text-align: center;
font-size: 30px;
font-weight: bold;
}
form {
padding-left: 10px;
}
input, select {
border: none;
border-bottom: 1px solid black;
outline: none;
width: 320px;
border-color: #996dff;
padding-left: 10px;
font-size: 18PX;
}
select {
background-color: #FFF;
}
td {
height: 40px;
font-size: 18px;
}
@media (max-width: 550px) {
.form-container {
width: 90vw;
}
input, select {
width: calc(80vw - 120px);
}
}