Content
* {
margin: 0;
padding: 0;
line-height: 1;
}
body {
font: 1em sans-serif;
}
.bar {
display: flex;
width: 100%;
padding: 1em 0;
background-color: #012169;
border-bottom: 1px solid #F1F0EF;
transition: background-color .25s;
cursor: pointer;
}
.bar:hover {
background-color: #F1F0EF;
}
.active {
background-color: #F1F0EF;
}
.bar__time {
width: 8em;
padding: 0 1em;
font-size: .875em;
color: #C0C0C0;
font-weight: 700;
}
.bar__title {
font-weight: 700;
color:#FFFFFF;
}
.head {
display: flex;
width: 100%;
padding: 1em 0;
background-color: #012169;
border-bottom: 1px solid #F1F0EF;
transition: background-color .25s;
}
.head_1 {
width: 8em;
padding: 0 1em;
font-size: .875em;
color: #EA6012;
font-weight: 700;
text-decoration: underline;
}
.head_2 {
padding: 0 1,5em;
font-size: .875em;
color: #EA6012;
font-weight: 700;
}
.content {
padding: 1em 8.8em;
display: none;
overflow: hidden;
border-bottom: 1px solid #F1F0EF;
background-color: #FFFFFF;
color:#EA6012;
}
.content p:last-child {
margin-bottom: 0;
}
.content_p {
margin-bottom: 0;
margin-top: 0.5em;
color: #EA6012;
font-size: 100%
}
.break {
display: flex;
width: 100%;
padding: 1em 0;
background-color: #012169;
border-bottom: 1px solid #F1F0EF;
transition: background-color .25s;
}
.break__time {
width: 8em;
padding: 0 1em;
font-size: .875em;
color: #C0C0C0;
font-weight: 700;
}
.break__title {
font-weight: 700;
color: #C0C0C0;
}
.radio {
display: flex;
width: 100%;
padding: 1em 0;
color: #EA6012;
background-color: #FFFFFF;
border-bottom: 1px solid #F1F0EF;
transition: background-color .25s;
}
.radio__time {
width: 8em;
padding: 0 1em;
font-size: .875em;
color:#EA6012;
font-weight: 700;
}
.radio__title {
font-weight: 700;
color:#EA6012;
}
Content
Topic 1 – ???:
Mikhail Antonovich, Natalia Shemyakina, Denis Gural, Vitaly Eremenko, Natalia Shmanevskaya, Ramilya Akhmetova
Topic 2 – ???:
Anton Nowyouov, Victoria Dunina, Oleg Buikov, Przemyslaw Boronski, Monika Karol, Eva Trochimyuk.
Topic 3 – ???:
Eustas Tsybulkas, Anton Dashkevich.
Topic 4 – ???:
Elena Firsova, Anastasia Dorokhova, Mikhail Novakov, Christian Eckstein.
Topic 1 – Finance
Topic 2 – Service Center
Topic 3 – Marketing
Topic 4 – Lawyers
Topic 5 – XP
Topic 6 – IT
Topic 7 – Analysts
Annual Contest from the Board of Directors for the title “Best employee”
Summing up the QUIZ on the platform
var coll = document.getElementsByClassName(‘bar’);
var i;
for (i = 0; i < coll.length; i++) {
coll[i].addEventListener('click', function() {
this.classList.toggle('active');
var content = this.nextElementSibling;
if (content.style.display === 'block') {
content.style.display = 'none';
} else {
content.style.display = 'block';
}
});
}