Де не буде світла у Хмельницькому 15 вересня

Обласні новини


У вівторок, 15 вересня, через планові роботи на електромережах без світла протягом дня можуть залишитися мешканці 30 будинків у Хмельницькому.

За інформацією “Хмельницькобленергоз 09.00 до 17.00 електропостачання може бути відсутнє у будинках за такими адресами:

вул. Вишнева
6, 11, 13, 15, 20, 22, 24, 26, 30, 6/5, 6/6, 6/7, 6/8, 11/1, 13/2, 24/2
вул. Вінницька
1
вул. Вокзальна
2, 3, 4, 7, 14, 15, 17, 19, 21, 23, 25, 27, 29, 1/1, 14А, 14/2, 14/3, 14/4, 23/1
вул. Дендропаркова
99/101
вул. Західна
вул. Західно-Окружна
1, 5/1, 7/1
вул. Кооперативна
2, 4, 5, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 5А, 161, 5/1, 16/2, 24/1, 5/3Б
вул. Лук’яненка Левка
1, 2, 3, 4, 5, 6, 7, 9, 2/1, 2/2, 2/3, 5/1, 7/1, 9/1, 9/2
вул. Міцкевича
33, 34, 36, 38, 40, 42, 44, 45, 46, 48, 48А
пр. Миру
1, 90, 92, 85/1, 90/1, 92/1, 92/2, 101/10, 99/101
вул. Нижня Берегова
41, 43, 45, 46, 47, 48, 49, 50, 52, 53, 54, 55, 56, 57, 58, 59, 60, 62, 63, 64, 66, 68, 69, 71, 75, 71А, 58/2, 69/1
вул. Олійника Б.
2, 121
вул. Північна
2, 10, 2А, 111, 121, 55А
вул. Пілотська
1
вул. Проскурівського підпілля
197, 197А
пров. Верхній Береговий
15, 17, 23, 25, 23/1
пров. Північний
111, 121
пров. Шухевича Романа
5, 10, 11, 12, 13, 14, 22, 24, 26, 28, 30, 8/1, 8/2, 12/1, 12/2, 26/1, 30/1, 32/1
проїзд Заміський 1-й
2, 3, 4, 5, 6, 9, 11, 14, 23, 35, 45
проїзд Заміський 2-й
5, 14
проїзд Заміський 4-й
14, 17
проїзд Заміський 5-й
4, 24
проїзд Заміський 6-й
1, 9, 10, 11, 18, 21, 23, 25, 26, 30, 31, 34, 36, 41, 42, 44, 48, 49, 50, 51, 54, 55, 56, 57, 59, 60, 64, 69, 70, 71, 74, 82
проїзд Заміський 7-й
23, 27, 28, 33, 35, 36, 37, 39, 40, 46, 60, 70, 76
проїзд Заміський 8-й
2, 4, 6, 18, 20, 22
проїзд Північний
2, 3, 4, 5, 6, 7, 8, 10, 12, 13, 15, 17, 19, 2/1
проїзд Торфяний
1, 3, 5
вул. Стецька Ярослава
4
вул. Старокостянтинівське шосе
3А, 3Б, 7А, 1/1, 3А/1
вул. Торфяна
2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 16, 18, 13/1, 14/1
вул. Шухевича Романа
8А, 103, 105, 107, 109, 112, 116, 116А, 120А, 120Д, 116/1, 116/3, 116/1А
Нічого не знайдено

@import url(‘https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap’);

.street-list-wrapper {
width: 100%;
font-family: ‘Roboto’, Arial, sans-serif;
}

.street-search {
width: 100%;
box-sizing: border-box;
padding: 12px 15px;
margin-bottom: 12px;
border: 1px solid #d5d5d5;
border-radius: 6px;
font-family: ‘Roboto’, Arial, sans-serif;
font-size: 16px;
outline: none;
}

.street-search:focus {
border-color: #999;
}

.street-list {
width: 100%;
max-height: 500px;
min-height: 180px;
overflow-y: auto;
overflow-x: hidden;
padding-right: 6px;
box-sizing: border-box;
}

.street-item {
padding: 11px 5px 11px 0;
border-bottom: 1px solid #e5e5e5;
}

.street-name {
font-size: 17px;
font-weight: 700;
line-height: 1.4;
margin-bottom: 4px;
}

.house-numbers {
font-size: 15px;
line-height: 1.5;
color: #444;
}

.no-results {
display: none;
padding: 20px 5px;
text-align: center;
color: #777;
font-size: 15px;
}

/* Стилізація смуги прокрутки */
.street-list::-webkit-scrollbar {
width: 7px;
}

.street-list::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 5px;
}

.street-list::-webkit-scrollbar-thumb {
background: #aaa;
border-radius: 5px;
}

.street-list::-webkit-scrollbar-thumb:hover {
background: #888;
}

function filterStreets() {
const input = document.getElementById(‘streetSearch’);
const filter = input.value.toLowerCase().trim();
const items = document.querySelectorAll(‘.street-item’);
const noResults = document.getElementById(‘noResults’);

let visibleCount = 0;

items.forEach(function(item) {
const text = item.textContent.toLowerCase();

if (text.includes(filter)) {
item.style.display = ”;
visibleCount++;
} else {
item.style.display = ‘none’;
}
});

if (visibleCount === 0) {
noResults.style.display = ‘block’;
} else {
noResults.style.display = ‘none’;
}
}
The post Де не буде світла у Хмельницькому 15 вересня first appeared on Поділля News.



Source link

Оцініть статтю