/
ivan
/
ModMas
Обзор
Документация
Войти
/
ivan
/
ModMas
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
ModuleMaster/ga/noaccdayscount.aspx
118 строк
3 KB
i.krivokon
Initial commit
13 мар 2026, 13:49
13 мар 2026, 13:49
00d9fb6
Код
Авторство
О чём код?
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="noaccdayscount.aspx.vb" Inherits="GA_noaccdayscount" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <meta http-equiv="refresh" content="60" /> <title>Working safe!</title> <style> html, body, form { width: 100%; height: 100%; margin: 0; overflow: hidden; } table { /*width: 100%; height: 100%;*/ text-align: center; } .caption { font-size: 58pt; text-align: center; font-weight: bold; margin-top: 50px; margin-bottom: 50px; padding-left: 10px; padding-right: 10px; color: navy; } .caption2 { font-size: 44pt; text-align: center; font-weight: bold; } .caption3 { font-size: 370pt; text-align: center; font-weight: bold; color: green; background-color: lightyellow; } .container { height: 100%; background-color: green; background-image: url('../Images/yellowblack.jpg'); font-family: Tahoma, Geneva, Verdana, sans-serif; overflow: hidden; } .maindiv { margin: 10px; background-color: white; border: 4px solid navy; height: auto; } .tbl { width: 100%; height: 80%; /*margin-top: 120px; margin-bottom: 210px;*/ display: block; border-top: 4px solid navy; } .tbl_td { /*padding-top: 65px; padding-bottom: 65px;*/ padding-left: 120px; padding-right: 120px; border-left: 4px solid navy; } .tbl_td1 { height: 50%; } </style> </head> <body> <form id="form1" runat="server"> <div class="container"> <div class="maindiv"> <div class="caption"> <div > НАША ЦЕЛЬ - РАБОТАТЬ БЕЗ ПРОИСШЕСТВИЙ! </div> <div style="margin-top: 60px; color: black;"> OUR TARGET IS WORKING SAFE! </div> </div> <div style=""> <table class="tbl"> <tr> <td class="caption2 tbl_td1" style="color: navy;">МАКСИМАЛЬНОЕ КОЛИЧЕСТВО ДНЕЙ БЕЗ ПРОИСШЕСТВИЙ</td> <td rowspan="2" class="caption3 tbl_td"> <asp:Label ID="lblDaysWOAccident" runat="server" Text="Label"></asp:Label> </td> </tr> <tr> <td class="caption2 tbl_td1 " style="color: black;">MAXIMUM DAYS WITHOUT ACCIDENT</td> </tr> </table> </div> </div> </div> </form> </body> </html>