-
Notifications
You must be signed in to change notification settings - Fork 654
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Причёмывает демки `<abbr>` * Дополняет текст `<abbr>` * Причёсывает демки `<dfn>` * Дополняет текст, меняет структуру `<dfn>` * Дополняет текст `<dl>`, `<dd>`, `<dt>` * Исправляет неточность * Меняет высоту демок * Уточняет дополнения про доступность * Принимает правки Co-authored-by: Alena Batitskaia <[email protected]> --------- Co-authored-by: Alena Batitskaia <[email protected]>
- Loading branch information
1 parent
dc3242d
commit 93bc183
Showing
7 changed files
with
242 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,64 @@ | ||
<!DOCTYPE html> | ||
<html lang="ru"> | ||
<head> | ||
<title>ООН — <abbr> — Дока</title> | ||
<title>Аббревиатура ООН — <abbr> — Дока</title> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto&display=swap"> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap"> | ||
<style> | ||
*, *::before, *::after { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
} | ||
|
||
html { | ||
height: 100%; | ||
margin-top: 0; | ||
margin-bottom: 0; | ||
color-scheme: dark; | ||
font-size: 24px; | ||
} | ||
|
||
body { | ||
min-height: 100%; | ||
margin-top: 0; | ||
margin-bottom: 0; | ||
min-height: 100vh; | ||
padding: 50px; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
background-color: #18191c; | ||
color: white; | ||
justify-content: center; | ||
background-color: #18191C; | ||
color: #000000; | ||
font-family: "Roboto", sans-serif; | ||
font-size: 24px; | ||
} | ||
|
||
p { | ||
text-align: center; | ||
margin: 7px 0; | ||
font-size: 1rem; | ||
line-height: 1.4; | ||
} | ||
|
||
.container { | ||
width: 65%; | ||
padding: 55px 40px; | ||
background-color: #FF8630; | ||
} | ||
|
||
@media (max-width: 768px) { | ||
body { | ||
padding: 30px; | ||
} | ||
|
||
.container { | ||
width: 100%; | ||
padding: 55px 30px; | ||
} | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<p> | ||
<abbr title="Организация объединённых наций">ООН</abbr> — международная организация, созданная для поддержания и укрепления международного мира и безопасности, а также развития сотрудничества между государствами | ||
</p> | ||
<div class="container"> | ||
<p> | ||
<abbr title="Организация объединённых наций">ООН</abbr> — международная организация, созданная для поддержания и укрепления международного мира и безопасности, а также развития сотрудничества между государствами. | ||
</p> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.