forked from microsoft/pxt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuwp.html
More file actions
169 lines (131 loc) · 3.27 KB
/
uwp.html
File metadata and controls
169 lines (131 loc) · 3.27 KB
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
<meta charset="UTF-8">
<title>Microsoft MakeCode</title>
<meta name="Description" content="A JavaScript Blocks Editor" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- @include indexhead.html -->
<style>
.targets.segment {
min-height: 700px;
}
.targets h2 {
font-size: 1.5em;
font-weight: normal;
margin-top: 0.2em;
white-space: nowrap;
}
.targets .welcomeheader {
font-weight: 300;
}
.masthead.segment {
min-height: 250px;
padding: 1em 0em;
}
.masthead h1.ui.header {
margin-top: 1em;
margin-bottom: 0em;
font-size: 4em;
font-weight: normal;
}
.masthead h2 {
font-size: 1.7em;
font-weight: normal;
margin-top: 0.2em;
margin-bottom: 2em;
}
.ui.vertical.stripe {
padding: 8em 0em;
}
.ui.vertical.stripe h3 {
font-size: 1.8em;
}
.ui.vertical.stripe .button + h3,
.ui.vertical.stripe p + h3 {
margin-top: 3em;
}
.ui.vertical.stripe .floated.image {
clear: both;
}
.ui.vertical.stripe p {
font-size: 1.1em;
}
.ui.vertical.stripe .horizontal.divider {
margin: 3em 0em;
}
.quote.stripe.segment {
padding: 0em;
}
.quote.stripe.segment .grid .column {
padding-top: 5em;
padding-bottom: 5em;
}
.footer.segment {
padding: 5em 0em;
}
.ui.header.makecode {
font-size: 1.5em;
font-weight: normal;
color: white;
}
.ui.inverted.targets {
background: #2a7af3;
}
.ui.inverted.masthead {
background: #34495e;
}
.targets > .ui.cards {
padding: 2rem;
}
.ui.cards > .card {
box-shadow: none;
vertical-align: bottom;
}
.targets > .ui.cards > .card > .image, .ui.card > .image {
padding: 1.5rem;
}
.targets > .ui.cards > .card > .image > img, .ui.card > .image > img {
height: 200px;
}
.ui.inverted.white {
background: none;
color: 1px solid white;
}
@media only screen and (min-width: 1200px) {
.targets > .ui.cards {
padding: 5rem;
}
.targets > .ui.cards > .card > .image > img, .ui.card > .image > img {
height: 250px;
}
.menubar {
margin-left: 2rem;
}
}
</style>
</head>
<body id='root' class='root'>
<div class="pusher">
<div class="ui inverted vertical center aligned segment targets">
<div class="ui padded menubar">
<div class="ui secondary menu">
<div class="ui item medium image" style="margin:0.5em">
<img class="ui image" style="width:100%;" src="/static/logo/Microsoft-MakeCode-logo-white.png" />
</div>
</div>
</div>
<div class="ui text container">
<h1 class="ui inverted welcomeheader">Hello! Choose an editor to get started.</h1>
<p>
</p>
</div>
<div class="ui three stackable cards ">
<!-- @include editorcards.html -->
</div>
</div>
</div>
<!-- @include footer.html -->
<!-- @include tracking.html -->
</body>
</html>