mirror of
https://github.com/pommee/goaway.git
synced 2026-05-21 00:40:04 -05:00
75 lines
1.2 KiB
CSS
75 lines
1.2 KiB
CSS
.cards-container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
justify-content: start;
|
|
}
|
|
|
|
.client-card {
|
|
border: 1px solid cornflowerblue;
|
|
border-radius: 8px;
|
|
width: 300px;
|
|
text-align: center;
|
|
}
|
|
|
|
.client-card .client-card-header {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.client-card .client-card-subheader {
|
|
color: gray;
|
|
}
|
|
|
|
.client-card .client-card-footer {
|
|
margin-top: 12px;
|
|
font-size: 0.9rem;
|
|
color: #888;
|
|
}
|
|
|
|
.modal {
|
|
display: none;
|
|
position: fixed;
|
|
z-index: 1000;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: auto;
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.modal-content {
|
|
border-radius: 8px;
|
|
border: 2px solid cornflowerblue;
|
|
background-color: #313131;
|
|
width: 60%;
|
|
height: 60%;
|
|
padding: 20px;
|
|
text-align: center;
|
|
position: relative;
|
|
}
|
|
|
|
.close {
|
|
position: absolute;
|
|
right: 20px;
|
|
top: 5px;
|
|
font-size: 2rem;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.action-button {
|
|
background: cornflowerblue;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 5px;
|
|
padding: 10px 20px;
|
|
margin: 10px 5px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.action-button:hover {
|
|
background: darkblue;
|
|
}
|