You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
39 lines
1.1 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>UI kit</title>
|
|
<link rel="stylesheet" type="text/css" href="/assets/css/style-core.css">
|
|
</head>
|
|
<style>
|
|
/* Стили для выравнивания UI-элеметнов для данной страницы */
|
|
.ui__ui-wrapper{
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
grid-column-gap: 30px;
|
|
grid-row-gap: 30px;
|
|
width: 100vw;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.ui,
|
|
.ui__item{
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
/* ВСЕ ОСТАЛЬНЫЕ СТИЛИ ПИШЕМ В style-core.css!!! */
|
|
</style>
|
|
<body class="ui">
|
|
<div class="ui__ui-wrapper">
|
|
<div class="ui__item"></div>
|
|
<div class="ui__item"></div>
|
|
<div class="ui__item"></div>
|
|
<!-- ... -->
|
|
<div class="ui__item"></div>
|
|
</div>
|
|
</body>
|
|
</html> |