Skip to content
This repository was archived by the owner on Jun 14, 2024. It is now read-only.

Commit 9b632c0

Browse files
authored
Add php support, update tweet links on python (#255)
1 parent 5bc94a3 commit 9b632c0

27 files changed

Lines changed: 698 additions & 13 deletions

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) Microsoft Corporation. All rights reserved.
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
| Language | Framework | Platform | Author |
2+
| -------- | -------- |--------|--------|
3+
| PHP | | Azure Web App, Virtual Machine| |
4+
5+
6+
# PHP web application
7+
8+
Sample PHP web application that you can deploy to Azure.
9+
10+
11+
## License:
12+
13+
See [LICENSE](LICENSE).
14+
15+
## Contributing
16+
17+
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
18+
Lines changed: 134 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
html,
2+
body {
3+
height: 100%;
4+
width: 100%;
5+
padding: 0;
6+
margin: 0;
7+
}
8+
@font-face{
9+
font-family: "Segoe UI";
10+
src: url('../fonts/segoeuil.ttf');
11+
}
12+
.main-container {
13+
height: 100%;
14+
width: 100%;
15+
background-color: #1d539d;
16+
color: white;
17+
padding-top: 6%;
18+
box-sizing: border-box;
19+
overflow-y: auto;
20+
overflow-x: hidden;
21+
font-family: "Segoe UI";
22+
}
23+
24+
.cloud-image {
25+
width: 1200px;
26+
height: 250px;
27+
padding-bottom: 50px;
28+
margin: auto;
29+
}
30+
31+
.success-text {
32+
padding-bottom: 20px;
33+
font-size: 62px;
34+
line-height: 73px;
35+
}
36+
37+
.description {
38+
font-size: 34px;
39+
line-height: 40px;
40+
}
41+
42+
.next-steps-container {
43+
padding-top: 50px;
44+
}
45+
46+
.next-steps-header {
47+
font-size: 24px;
48+
line-height: 28px;
49+
padding-bottom: 25px;
50+
}
51+
52+
.next-steps-body {
53+
display: flex;
54+
flex-direction: column;
55+
}
56+
57+
.step {
58+
display: flex;
59+
margin: 7px 0px;
60+
font-size: 15px;
61+
line-height: 21px;
62+
}
63+
64+
.step-icon {
65+
height: 20px;
66+
width: 20px;
67+
margin-right: 10px;
68+
}
69+
70+
.step-text a {
71+
color: white;
72+
text-decoration: none;
73+
}
74+
75+
.step-text a:hover {
76+
color: white;
77+
text-decoration:underline;
78+
}
79+
80+
.content {
81+
box-sizing: border-box;
82+
min-width: 700px;
83+
max-width: 830px;
84+
position: relative;
85+
margin: auto;
86+
}
87+
88+
.tweet-container {
89+
min-width: 30px;
90+
min-height: 100px;
91+
margin: 0 20px;
92+
position: absolute;
93+
left: -100px;
94+
top: 110px;
95+
}
96+
.content-body{
97+
min-width: 400px;
98+
}
99+
100+
@media (max-width: 1024px) {
101+
.main-container{
102+
padding-top: 1%;
103+
}
104+
.cloud-image {
105+
padding-bottom: 30px;
106+
}
107+
.next-steps-container {
108+
padding-top: 30px;
109+
}
110+
.next-steps-header {
111+
padding-bottom: 20px;
112+
}
113+
.success-text {
114+
font-size: 50px;
115+
line-height: 61px;
116+
padding-bottom: 10px;
117+
}
118+
.description {
119+
font-size: 26px;
120+
line-height: 30px;
121+
}
122+
123+
.step {
124+
font-size: 12px;
125+
line-height: 18px;
126+
}
127+
.tweet-container {
128+
top: 80px;
129+
}
130+
.content{
131+
max-width: 630px;
132+
min-width: 630px;
133+
}
134+
}
789 KB
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)