Dantes (обсуждение | вклад) Нет описания правки |
Dantes (обсуждение | вклад) Нет описания правки |
||
| Строка 1: | Строка 1: | ||
. | .infoblocks { | ||
display: flex; | |||
flex-wrap: wrap; | |||
gap: 1em; | |||
justify-content: center; | |||
margin: 1em 0; | |||
} | } | ||
. | .infoblocks .infoblock { | ||
background: #1a1a1a; | |||
color: #f0f0f0; | |||
padding: 1em; | |||
border: 2px solid #333333; | |||
border-radius: 0 0 12px 12px; | |||
box-shadow: 0 0 10px rgba(0,0,0,0.7); | |||
font-family: monospace; | |||
flex: 1 1 30%; | |||
max-width: 40ch; | |||
hyphens: auto; | |||
word-wrap: break-word; | |||
overflow-wrap: break-word; | |||
line-height: 1.4; | |||
} | |||
} | |||
. | .infoblocks .title { | ||
display: flex; | |||
align-items: center; | |||
font-weight: bold; | |||
margin-bottom: 0.5em; | |||
font-size: 1.1em; | |||
} | |||
. | |||
} | |||
Версия от 14:18, 2 июля 2025
.infoblocks {
display: flex;
flex-wrap: wrap;
gap: 1em;
justify-content: center;
margin: 1em 0;
}
.infoblocks .infoblock {
background: #1a1a1a;
color: #f0f0f0;
padding: 1em;
border: 2px solid #333333;
border-radius: 0 0 12px 12px;
box-shadow: 0 0 10px rgba(0,0,0,0.7);
font-family: monospace;
flex: 1 1 30%;
max-width: 40ch;
hyphens: auto;
word-wrap: break-word;
overflow-wrap: break-word;
line-height: 1.4;
}
.infoblocks .title {
display: flex;
align-items: center;
font-weight: bold;
margin-bottom: 0.5em;
font-size: 1.1em;
}