Skip to content

Commit

Permalink
<update>
Browse files Browse the repository at this point in the history
  • Loading branch information
sogonov committed Mar 19, 2024
1 parent 927e172 commit 8958108
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 7 deletions.
18 changes: 16 additions & 2 deletions bioteh.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@

#countdown {
background-color: #e6e6e6; /* серый фон */
/* font-style: italic; /* курсив */
/* padding: 10px; /* добавим отступы для улучшенного вида */
border: none; /* убираем рамк
font-size: 20px; /* размер шрифта */}


.dark #countdown {
background-color: #282828; /* серый фон */
}

.tg {
overflow-x: scroll;
width: 100%; // замените на требуемое значение
Expand Down Expand Up @@ -398,7 +411,7 @@ td{
#mess{
background-color: #e6e6e6;
position: fixed;
top: 260px; /*Координата сверху*/
top: 360px; /*Координата сверху*/
left: 2%; /*Координата слева*/
width: 240px;
border-radius: 10px;
Expand Down Expand Up @@ -643,4 +656,5 @@ summary:focus {
display: none;
}
.tl_page{
background-color: #FCFBFB;}
background-color: #FCFBFB;}

39 changes: 34 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,14 @@
</head>

<!-- Информационные сообщения слева страницы -->
<p id="mess" class="hide-on-mobile">


<p id="mess" class="hide-on-mobile">
<br>побуду в роли bin ладно<br>
<br>диплом должен быть загружен в лк в течение
<input type="text" id="countdown">

<br>Еще рано, не переживай)<br>

<!-- <br>15.11 - дедлайн теста "Синтез цифровых устройств с помощью VHDL"<br> -->
<!-- 22.11 - дедлайн теста "АЦП"<br> -->
Expand All @@ -41,6 +45,32 @@
<!-- и две пары с с 9:45 9 июня -->
</p>


<script>
function countdown() {
var count = document.getElementById("countdown");
var countdownDate = new Date("May 16, 2024 00:00:00").getTime();

var now = new Date().getTime();
var distance = countdownDate - now;

var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);

if (distance > 0) {
count.value = days + "д " + hours + "ч " + minutes + "м " + seconds + "с";
setTimeout(countdown, 1000);
} else {
count.value = "Время истекло!";
}
}

countdown();
</script>


<!-- Календарь(скрипт не мой, взят из просторов интернета) -->
<table id="calendar2" class="hide-on-mobile">
<thead>
Expand Down Expand Up @@ -306,7 +336,7 @@ <h2 id="datetime"></h2>

<details class="details1"><summary>Расписания</summary>
<p id="rasp" hidden></p>
<figure><img id="nowwek"src="rasp8/1.png"><figcaption>текущая</figcaption></figure>
<figure><img id="nowwek" src="rasp8/1.png"><figcaption>текущая</figcaption></figure>
<details class="details2"><summary>Расписания на следующие недели</summary>
<figure><img src="rasp8/7.png"><figcaption>7</figcaption></figure>
<figure><img src="rasp8/8.png"><figcaption>8</figcaption></figure>
Expand Down Expand Up @@ -441,15 +471,14 @@ <h2 id="datetime"></h2>
</details>


<p id="sto_sosau" ><!-- <!-- style="color: red; <!--font-size:30pt--><a href="https://cabinet.ssau.ru/assets/standard/sto_02068410_004_2019.pdf">СТО сосау для тех кто пишет дипломы</a></p>
<!-- </ul> -->
<!-- </details> -->
<p id="sto_sosau" ><a href="https://cabinet.ssau.ru/assets/standard/sto_02068410_004_2019.pdf">СТО сосау для тех кто пишет дипломы</a></p>


<h4 id="biomedinf"><a href="#contents">Автоматизация обработки биомедицинской информации</a></h4>
<ul>
<li>лектор: Конюхов Вадим Николаевич - <a target="_blank" href="mailto:[email protected]">[email protected]</a></li>
<li>лабник: Христофорова Юлия Александровна- <a href="mailto:[email protected]" target="_blank">[email protected]</a> + <a href="mailto:[email protected]" target="_blank">[email protected]</a></li>
<li><a href="https://drive.google.com/drive/folders/1bfFNfm-U98EvEj8soGEkBv1Qw7XE_sJx?usp=sharing" target="_blank">Диск, куда кидать лабы</a> </li>
</ul>
<details class="details1"><summary>методички, etc </summary>
<ul>
Expand Down

0 comments on commit 8958108

Please sign in to comment.