31 lines
No EOL
424 B
Text
31 lines
No EOL
424 B
Text
.container {
|
|
padding: 20px;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.info-card {
|
|
width: 100%;
|
|
max-width: 500px;
|
|
background: #fff;
|
|
border-radius: 10px;
|
|
padding: 20px;
|
|
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.info-item {
|
|
margin-bottom: 15px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.label {
|
|
font-weight: bold;
|
|
width: 80px;
|
|
color: #333;
|
|
}
|
|
|
|
.link {
|
|
color: #07C160;
|
|
text-decoration: none;
|
|
} |