37 lines
535 B
CSS
37 lines
535 B
CSS
#warncard {
|
|
display: flex;
|
|
flex-direction: column;
|
|
position: absolute;
|
|
top: 300px;
|
|
left: 30%;
|
|
z-index: 200;
|
|
width: 750px;
|
|
border-radius: 20px;
|
|
border: 2px solid transparent;
|
|
background: var(--background-color);
|
|
}
|
|
|
|
h2 {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 0.2rem;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100px;
|
|
}
|
|
|
|
.h2-span {
|
|
padding: 2rem 0 1.5rem 0.5rem;
|
|
}
|
|
|
|
.name {
|
|
width: 200px;
|
|
cursor: default;
|
|
}
|
|
|
|
a {
|
|
color: var(--border-color);
|
|
}
|
|
|
|
|