Skip to content

Commit 9813096

Browse files
committed
primer commit
0 parents  commit 9813096

23 files changed

+1063
-0
lines changed

.htaccess

Lines changed: 543 additions & 0 deletions
Large diffs are not rendered by default.

404.html

Lines changed: 133 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>Page Not Found :(</title> <style>::-moz-selection {
2+
background: #b3d4fc;
3+
text-shadow: none;
4+
}
5+
6+
::selection {
7+
background: #b3d4fc;
8+
text-shadow: none;
9+
}
10+
11+
html {
12+
padding: 30px 10px;
13+
font-size: 20px;
14+
line-height: 1.4;
15+
color: #737373;
16+
background: #f0f0f0;
17+
-webkit-text-size-adjust: 100%;
18+
-ms-text-size-adjust: 100%;
19+
}
20+
21+
html,
22+
input {
23+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
24+
}
25+
26+
body {
27+
max-width: 500px;
28+
_width: 500px;
29+
padding: 30px 20px 50px;
30+
border: 1px solid #b3b3b3;
31+
border-radius: 4px;
32+
margin: 0 auto;
33+
box-shadow: 0 1px 10px #a7a7a7, inset 0 1px 0 #fff;
34+
background: #fcfcfc;
35+
}
36+
37+
h1 {
38+
margin: 0 10px;
39+
font-size: 50px;
40+
text-align: center;
41+
}
42+
43+
h1 span {
44+
color: #bbb;
45+
}
46+
47+
h3 {
48+
margin: 1.5em 0 0.5em;
49+
}
50+
51+
p {
52+
margin: 1em 0;
53+
}
54+
55+
ul {
56+
padding: 0 0 0 40px;
57+
margin: 1em 0;
58+
}
59+
60+
.container {
61+
max-width: 380px;
62+
_width: 380px;
63+
margin: 0 auto;
64+
}
65+
66+
/* google search */
67+
68+
#goog-fixurl ul {
69+
list-style: none;
70+
padding: 0;
71+
margin: 0;
72+
}
73+
74+
#goog-fixurl form {
75+
margin: 0;
76+
}
77+
78+
#goog-wm-qt,
79+
#goog-wm-sb {
80+
border: 1px solid #bbb;
81+
font-size: 16px;
82+
line-height: normal;
83+
vertical-align: top;
84+
color: #444;
85+
border-radius: 2px;
86+
}
87+
88+
#goog-wm-qt {
89+
width: 220px;
90+
height: 20px;
91+
padding: 5px;
92+
margin: 5px 10px 0 0;
93+
box-shadow: inset 0 1px 1px #ccc;
94+
}
95+
96+
#goog-wm-sb {
97+
display: inline-block;
98+
height: 32px;
99+
padding: 0 10px;
100+
margin: 5px 0 0;
101+
white-space: nowrap;
102+
cursor: pointer;
103+
background-color: #f5f5f5;
104+
background-image: -webkit-linear-gradient(rgba(255,255,255,0), #f1f1f1);
105+
background-image: -moz-linear-gradient(rgba(255,255,255,0), #f1f1f1);
106+
background-image: -ms-linear-gradient(rgba(255,255,255,0), #f1f1f1);
107+
background-image: -o-linear-gradient(rgba(255,255,255,0), #f1f1f1);
108+
-webkit-appearance: none;
109+
-moz-appearance: none;
110+
appearance: none;
111+
*overflow: visible;
112+
*display: inline;
113+
*zoom: 1;
114+
}
115+
116+
#goog-wm-sb:hover,
117+
#goog-wm-sb:focus {
118+
border-color: #aaa;
119+
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
120+
background-color: #f8f8f8;
121+
}
122+
123+
#goog-wm-qt:hover,
124+
#goog-wm-qt:focus {
125+
border-color: #105cb6;
126+
outline: 0;
127+
color: #222;
128+
}
129+
130+
input::-moz-focus-inner {
131+
padding: 0;
132+
border: 0;
133+
}</style> <body> <div class="container"> <h1>Not found <span>:(</span></h1> <p>Sorry, but the page you were trying to view does not exist.</p> <p>It looks like this was the result of either:</p> <ul> <li>a mistyped address</li> <li>an out-of-date link</li> </ul> <script>var GOOG_FIXURL_LANG = (navigator.language || '').slice(0,2),GOOG_FIXURL_SITE = location.host;</script> <script src="//linkhelp.clients.google.com/tbproxy/lh/wm/fixurl.js"></script> </div>

app.yaml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
application: gdg-angular-intro
2+
version: 1
3+
runtime: python27
4+
api_version: 1
5+
threadsafe: yes
6+
7+
handlers:
8+
- url: /favicon\.ico
9+
static_files: favicon.ico
10+
upload: favicon\.ico
11+
- url: /styles
12+
static_dir: styles
13+
- url: /scripts
14+
static_dir: scripts
15+
- url: /fonts
16+
static_dir: fonts
17+
- url: /views
18+
static_dir: views
19+
- url: /images
20+
static_dir: images
21+
22+
- url: .*
23+
script: main.app
24+
25+
libraries:
26+
- name: webapp2
27+
version: "2.5.2"
28+
- name: jinja2
29+
version: latest
30+
- name: markupsafe
31+
version: latest

favicon.ico

4.19 KB
Binary file not shown.
19.7 KB
Binary file not shown.

fonts/glyphicons-halflings-regular.svg

Lines changed: 288 additions & 0 deletions
Loading
44.3 KB
Binary file not shown.
22.9 KB
Binary file not shown.
17.6 KB
Binary file not shown.

images/yeoman.c582c4d1.png

8.31 KB
Loading

0 commit comments

Comments
 (0)