DmitrMakeev
commited on
Commit
•
93b0890
1
Parent(s):
3c33c0b
Update data_ras.html
Browse files- data_ras.html +34 -3
data_ras.html
CHANGED
@@ -4,19 +4,50 @@
|
|
4 |
<meta charset="utf-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
6 |
<title>Contacts</title>
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
table {
|
9 |
width: 70%;
|
|
|
10 |
border-collapse: collapse;
|
|
|
|
|
11 |
}
|
12 |
th, td {
|
13 |
-
border: 1px solid
|
14 |
-
padding:
|
15 |
text-align: left;
|
16 |
}
|
17 |
th {
|
|
|
|
|
|
|
|
|
|
|
18 |
background-color: #f2f2f2;
|
19 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
</style>
|
21 |
</head>
|
22 |
<body>
|
|
|
4 |
<meta charset="utf-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
6 |
<title>Contacts</title>
|
7 |
+
<style>
|
8 |
+
body {
|
9 |
+
font-family: Arial, sans-serif;
|
10 |
+
text-align: center;
|
11 |
+
background-color: #f0f0f0;
|
12 |
+
margin: 0;
|
13 |
+
padding: 0;
|
14 |
+
max-height: 250px; /* Устанавливаем максимальную высоту страницы */
|
15 |
+
}
|
16 |
+
h1 {
|
17 |
+
background-color: #4CAF50;
|
18 |
+
color: white;
|
19 |
+
padding: 20px;
|
20 |
+
margin: 0;
|
21 |
+
border-bottom: 2px solid #388E3C;
|
22 |
+
}
|
23 |
table {
|
24 |
width: 70%;
|
25 |
+
margin: 20px auto;
|
26 |
border-collapse: collapse;
|
27 |
+
background-color: white;
|
28 |
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
29 |
}
|
30 |
th, td {
|
31 |
+
border: 1px solid #ddd;
|
32 |
+
padding: 12px;
|
33 |
text-align: left;
|
34 |
}
|
35 |
th {
|
36 |
+
background-color: #4CAF50;
|
37 |
+
color: white;
|
38 |
+
border-bottom: 2px solid #388E3C;
|
39 |
+
}
|
40 |
+
tr:nth-child(even) {
|
41 |
background-color: #f2f2f2;
|
42 |
}
|
43 |
+
tr:hover {
|
44 |
+
background-color: #e0e0e0;
|
45 |
+
}
|
46 |
+
p {
|
47 |
+
margin-top: 20px;
|
48 |
+
font-size: 18px;
|
49 |
+
color: #333;
|
50 |
+
}
|
51 |
</style>
|
52 |
</head>
|
53 |
<body>
|