57 lines
1.3 KiB
Plaintext
57 lines
1.3 KiB
Plaintext
@{
|
|
ViewData["Title"] = "Home Page";
|
|
}
|
|
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<style>
|
|
.main {
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
margin-top: 150px;
|
|
}
|
|
|
|
.orintation {
|
|
display: flex;
|
|
justify-content: right;
|
|
min-height: 240px;
|
|
}
|
|
|
|
.intro_block {
|
|
width: 553px;
|
|
}
|
|
|
|
.intro_title {
|
|
font-size: 60px;
|
|
font-weight: 700;
|
|
margin: 0 0 29px 0;
|
|
}
|
|
|
|
.intro_text {
|
|
font-size: 20px;
|
|
margin: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<form method="post">
|
|
<div class="main">
|
|
<div class="container-fluid">
|
|
<div class="orintation">
|
|
<div class ="intro_block">
|
|
<h1 class="intro_title">
|
|
Сайт Организатора
|
|
</h1>
|
|
<p class="intro_text">
|
|
Тут ты можешь создавать свои конференции, добавлять участников и создавать планы питания
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|