forked from prlbkj9i7/wzy
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.
72 lines
1.2 KiB
72 lines
1.2 KiB
6 months ago
|
* {
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
.logo-box {
|
||
|
width: 20%;
|
||
|
margin-right: 20px;
|
||
|
}
|
||
|
.logo_img {
|
||
|
width: 100px;
|
||
|
height: 100px;
|
||
|
object-fit: cover;
|
||
|
border-radius: 50%;
|
||
|
margin: 0 auto;
|
||
|
border: 3px solid #9e4747;
|
||
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
|
||
|
position: absolute;
|
||
|
top: 120px;
|
||
|
left: 687px;
|
||
|
}
|
||
|
.registration-card {
|
||
|
background-color: #eff6f5;
|
||
|
border-radius: 5px;
|
||
|
padding: 20px;
|
||
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
||
|
width: 40%;
|
||
|
position: absolute;
|
||
|
}
|
||
|
.card-header {
|
||
|
font-weight: bold;
|
||
|
margin-bottom: 10px;
|
||
|
text-align: center;
|
||
|
}
|
||
|
.no-registrations {
|
||
|
text-align: center;
|
||
|
padding: 20px;
|
||
|
color: #999;
|
||
|
}
|
||
|
.container {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
height: 100vh;
|
||
|
width: 100vw;
|
||
|
background-color: #8bc2ec;
|
||
|
}
|
||
|
|
||
|
.logo-box {
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
.exit-button {
|
||
|
display: inline-block;
|
||
|
padding: 10px 20px;
|
||
|
margin-top: 10px;
|
||
|
font-size: 16px;
|
||
|
background-color: #4bd6c3;
|
||
|
border: none;
|
||
|
border-radius: 4px;
|
||
|
cursor: pointer;
|
||
|
text-align: center;
|
||
|
transition: background-color 0.3s ease
|
||
|
}
|
||
|
|
||
|
.exit-button:hover {
|
||
|
background-color: #658fc6;
|
||
|
}
|
||
|
|
||
|
|
||
|
.exit-button:active {
|
||
|
transform: translateY(2px);
|
||
|
}
|
||
|
|