56 lines
915 B
CSS
56 lines
915 B
CSS
|
body {
|
||
|
font-family: monospace, sans-serif;
|
||
|
}
|
||
|
|
||
|
.wrapper {
|
||
|
text-align: center;
|
||
|
margin: 100px;
|
||
|
background-color: rgba(159, 183, 218, 0.856);
|
||
|
border-radius: 10px;
|
||
|
padding: 50px 0;
|
||
|
|
||
|
}
|
||
|
|
||
|
.wrapper h2 {
|
||
|
font-size: 38px;
|
||
|
padding: 15px 0;
|
||
|
|
||
|
}
|
||
|
|
||
|
.wrapper h3 {
|
||
|
font-size: 22px;
|
||
|
}
|
||
|
|
||
|
#selected-seats {
|
||
|
font-size: 30px;
|
||
|
text-shadow: 1px 1px 1px rgb(160, 160, 160);
|
||
|
margin-top: -15px;
|
||
|
margin-bottom: 100px;
|
||
|
}
|
||
|
|
||
|
button {
|
||
|
margin: auto 0;
|
||
|
font-size: 18px;
|
||
|
background-color: #5d7cd3;
|
||
|
border-radius: 2px;
|
||
|
border: 0;
|
||
|
min-width: 250px;
|
||
|
padding: 25px 60px;
|
||
|
text-align: center;
|
||
|
box-shadow:0px 4px 0px #1e3572;
|
||
|
font-family: monospace;
|
||
|
float: right;
|
||
|
}
|
||
|
|
||
|
button:hover {
|
||
|
box-shadow: 0 0 rgb(103, 88, 184);
|
||
|
background-color: #3654c9;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
button:active {
|
||
|
top: 4px;
|
||
|
box-shadow: 0 0 #b85a5b;
|
||
|
background-color: #3654ff;
|
||
|
}
|