Update user.html
Browse files
user.html
CHANGED
@@ -18,23 +18,32 @@
|
|
18 |
justify-content: center;
|
19 |
height: 100vh; /* Занимаем всю высоту экрана */
|
20 |
}
|
21 |
-
|
22 |
-
background-color: #
|
23 |
color: white;
|
24 |
padding: 20px;
|
25 |
margin: 0;
|
26 |
-
border
|
27 |
font-size: 2em; /* Увеличиваем размер шрифта */
|
|
|
|
|
|
|
|
|
28 |
}
|
29 |
-
|
30 |
-
|
31 |
-
height: auto;
|
32 |
-
margin-top: 20px; /* Добавляем отступ сверху */
|
33 |
}
|
34 |
</style>
|
35 |
</head>
|
36 |
<body>
|
37 |
-
<h1
|
38 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
</body>
|
40 |
</html>
|
|
|
18 |
justify-content: center;
|
19 |
height: 100vh; /* Занимаем всю высоту экрана */
|
20 |
}
|
21 |
+
.centered-heading {
|
22 |
+
background-color: #FF0000; /* Красный цвет */
|
23 |
color: white;
|
24 |
padding: 20px;
|
25 |
margin: 0;
|
26 |
+
border: 2px solid #FF0000; /* Красная обводка */
|
27 |
font-size: 2em; /* Увеличиваем размер шрифта */
|
28 |
+
display: inline-flex; /* Используем flexbox для выравнивания иконки и текста */
|
29 |
+
align-items: center; /* Выравниваем элементы по вертикали */
|
30 |
+
justify-content: center; /* Выравниваем элементы по горизонтали */
|
31 |
+
margin-bottom: 20px; /* Добавляем отступ снизу */
|
32 |
}
|
33 |
+
.centered-heading svg {
|
34 |
+
margin-right: 10px; /* Добавляем отступ между иконкой и текстом */
|
|
|
|
|
35 |
}
|
36 |
</style>
|
37 |
</head>
|
38 |
<body>
|
39 |
+
<h1 class="centered-heading">
|
40 |
+
<!-- icon666.com - MILLIONS vector ICONS FREE -->
|
41 |
+
<svg version="1.1" id="vk_auth_button" xmlns="http://www.w3.org/2000/svg" width="36" height="36" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 347.971 347.971" style="enable-background:new 0 0 347.971 347.971;" xml:space="preserve">
|
42 |
+
<g>
|
43 |
+
<path d="M317.308,54.367C257.945,54.367,212.46,37.403,173.997,0C135.522,37.403,90.034,54.367,30.663,54.367 c0,97.406-20.158,236.937,143.334,293.604C337.465,291.304,317.308,151.773,317.308,54.367z M62.886,85.378 c35.75-3.721,66.89-13.996,94.797-31.282v109.059H64.467C61.94,137.053,62.403,110.301,62.886,85.378z M236.384,274.832 c-12.451,12.023-27.895,22.469-46.086,31.234V195.779h88.215c-1.878,8.498-4.223,16.811-7.193,24.828 C263.426,242.02,251.99,259.762,236.384,274.832z" fill="#000000" style="fill: rgb(255, 255, 255);"></path>
|
44 |
+
</g>
|
45 |
+
</svg>
|
46 |
+
Вы не авторизированы
|
47 |
+
</h1>
|
48 |
</body>
|
49 |
</html>
|