forked from Kanaduchi/vwcoding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.en.html
97 lines (87 loc) · 2.41 KB
/
home.en.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{#-
This file was automatically generated - do not edit
-#}
{% extends "main.en.html" %}
{% block tabs %}
{{ super() }}
<style>
/* Application header should be static for the landing page */
.md-header {
position: initial;
}
/* Remove spacing, as we cannot hide it completely */
.md-main__inner {
margin: 0;
}
/* Hide main content for now */
.md-content {
display: none;
}
@media screen and (min-width:60em) {
.md-sidebar--secondary {
display: none
}
.mdx-hero {
display: flex;
align-items: stretch
}
.mdx-hero__content {
max-width: 40rem;
margin-top: 3.5rem;
padding-bottom: 14vw
}
.mdx-hero__image {
width: 30rem;
order: 1;
margin-top: 3.5rem;
transform: translateX(4rem)
}
}
@media screen and (min-width:76.25em) {
.md-sidebar--primary {
display: none
}
.mdx-hero__image {
transform: translateX(8rem);
margin-top: 3.5rem;
}
}
.mdx-hero__content a, .mdx-hero__content a:focus, .mdx-hero__content a:hover {
color: var(--md-primary-bg-color)
}
.mdx-hero .md-button {
margin-top: .5rem;
margin-right: .5rem;
color: var(--md-primary-bg-color)
}
.mdx-hero .md-button--primary {
background-color: var(--md-primary-bg-color);
color: hsla(280deg, 37%, 48%, 1);
border-color: var(--md-primary-bg-color)
}
.md-button:focus,
.mdx-hero .md-button:hover {
background-color: var(--md-accent-fg-color);
color: var(--md-default-bg-color);
border-color: var(--md-accent-fg-color)
}
</style>
<section class="mdx-container">
<div class="md-grid md-typeset">
<div class="mdx-hero">
<div class="mdx-hero__image">
<img src="../../assets/illustration.png" alt="" draggable="false">
</div>
<div class="mdx-hero__content">
<h1>New possibilities!</h1>
<p>{{ config.hot_news_en }} </p>
<a href="../../history" class="md-button">
Full history changes
</a>
</div>
</div>
</div>
</section>
{% endblock %}
{% block content %}{% endblock %}
{% block footer %}{% endblock %}