Initial commit
This commit is contained in:
commit
44fab29bae
7
chromebook-checkout-meteor/.meteor/.finished-upgraders
Normal file
7
chromebook-checkout-meteor/.meteor/.finished-upgraders
Normal file
@ -0,0 +1,7 @@
|
||||
# This file contains information which helps Meteor properly upgrade your
|
||||
# app when you run 'meteor update'. You should check it into version control
|
||||
# with your project.
|
||||
|
||||
notices-for-0.9.0
|
||||
notices-for-0.9.1
|
||||
0.9.4-platform-file
|
||||
1
chromebook-checkout-meteor/.meteor/.gitignore
vendored
Normal file
1
chromebook-checkout-meteor/.meteor/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
local
|
||||
7
chromebook-checkout-meteor/.meteor/.id
Normal file
7
chromebook-checkout-meteor/.meteor/.id
Normal file
@ -0,0 +1,7 @@
|
||||
# This file contains a token that is unique to your project.
|
||||
# Check it into your repository along with the rest of this directory.
|
||||
# It can be used for purposes such as:
|
||||
# - ensuring you don't accidentally deploy one app on top of another
|
||||
# - providing package authors with aggregated statistics
|
||||
|
||||
w2o661kpjksnfwhyuv
|
||||
9
chromebook-checkout-meteor/.meteor/packages
Normal file
9
chromebook-checkout-meteor/.meteor/packages
Normal file
@ -0,0 +1,9 @@
|
||||
# Meteor packages used by this project, one per line.
|
||||
# Check this file (and the other files in this directory) into your repository.
|
||||
#
|
||||
# 'meteor add' and 'meteor remove' will edit this file for you,
|
||||
# but you can also edit it by hand.
|
||||
|
||||
meteor-platform
|
||||
autopublish
|
||||
insecure
|
||||
2
chromebook-checkout-meteor/.meteor/platforms
Normal file
2
chromebook-checkout-meteor/.meteor/platforms
Normal file
@ -0,0 +1,2 @@
|
||||
server
|
||||
browser
|
||||
1
chromebook-checkout-meteor/.meteor/release
Normal file
1
chromebook-checkout-meteor/.meteor/release
Normal file
@ -0,0 +1 @@
|
||||
METEOR@1.0.2
|
||||
50
chromebook-checkout-meteor/.meteor/versions
Normal file
50
chromebook-checkout-meteor/.meteor/versions
Normal file
@ -0,0 +1,50 @@
|
||||
application-configuration@1.0.4
|
||||
autopublish@1.0.2
|
||||
autoupdate@1.1.4
|
||||
base64@1.0.2
|
||||
binary-heap@1.0.2
|
||||
blaze@2.0.4
|
||||
blaze-tools@1.0.2
|
||||
boilerplate-generator@1.0.2
|
||||
callback-hook@1.0.2
|
||||
check@1.0.3
|
||||
ddp@1.0.13
|
||||
deps@1.0.6
|
||||
ejson@1.0.5
|
||||
fastclick@1.0.2
|
||||
follower-livedata@1.0.3
|
||||
geojson-utils@1.0.2
|
||||
html-tools@1.0.3
|
||||
htmljs@1.0.3
|
||||
http@1.0.9
|
||||
id-map@1.0.2
|
||||
insecure@1.0.2
|
||||
jquery@1.0.2
|
||||
json@1.0.2
|
||||
launch-screen@1.0.1
|
||||
livedata@1.0.12
|
||||
logging@1.0.6
|
||||
meteor@1.1.4
|
||||
meteor-platform@1.2.1
|
||||
minifiers@1.1.3
|
||||
minimongo@1.0.6
|
||||
mobile-status-bar@1.0.2
|
||||
mongo@1.0.10
|
||||
observe-sequence@1.0.4
|
||||
ordered-dict@1.0.2
|
||||
random@1.0.2
|
||||
reactive-dict@1.0.5
|
||||
reactive-var@1.0.4
|
||||
reload@1.1.2
|
||||
retry@1.0.2
|
||||
routepolicy@1.0.3
|
||||
session@1.0.5
|
||||
spacebars@1.0.4
|
||||
spacebars-compiler@1.0.4
|
||||
templating@1.0.10
|
||||
tracker@1.0.4
|
||||
ui@1.0.5
|
||||
underscore@1.0.2
|
||||
url@1.0.3
|
||||
webapp@1.1.5
|
||||
webapp-hashing@1.0.2
|
||||
11
chromebook-checkout-meteor/client/initial.html
Normal file
11
chromebook-checkout-meteor/client/initial.html
Normal file
@ -0,0 +1,11 @@
|
||||
<template name="initial">
|
||||
<div id="center">
|
||||
<div id="sign-in">
|
||||
<h5>Chromebook Checkout</h5>
|
||||
<button id="submit">Checkout!</button>
|
||||
</div>
|
||||
<p class="bottom">Checkout a chromebook.
|
||||
<img class="chromeicon" src="ico/chrico.png">
|
||||
</p>
|
||||
</div>
|
||||
</template>
|
||||
15
chromebook-checkout-meteor/client/initial.js
Normal file
15
chromebook-checkout-meteor/client/initial.js
Normal file
@ -0,0 +1,15 @@
|
||||
var links = [
|
||||
"https://google.com",
|
||||
"https://drive.google.com/drive",
|
||||
"https://translate.google.com",
|
||||
"https://keep.google.com/",
|
||||
"https://mail.google.com/mail/u/0/",
|
||||
"https://classroom.google.com/h"
|
||||
]
|
||||
|
||||
Template.initial.events({
|
||||
'click .chromeicon': function() {
|
||||
var randomint = Math.floor(Math.random() * (links.length - 1));
|
||||
window.open(links[randomint], "_blank")
|
||||
}
|
||||
})
|
||||
158
chromebook-checkout-meteor/client/main.css
Normal file
158
chromebook-checkout-meteor/client/main.css
Normal file
@ -0,0 +1,158 @@
|
||||
/* CSS declarations go here */
|
||||
@font-face {
|
||||
font-family: 'Lato';
|
||||
src: url('fonts/Lato-Light.woff');
|
||||
}
|
||||
html {
|
||||
background: url("images/bg.jpg") no-repeat center center fixed;
|
||||
-webkit-background-size: cover;
|
||||
-moz-background-size: cover;
|
||||
-o-background-size: cover;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.center {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 80%;
|
||||
display: table;
|
||||
}
|
||||
|
||||
body {
|
||||
font:35px/1.5 'Lato';
|
||||
color:#777;
|
||||
font-weight:300;
|
||||
height:100%;
|
||||
overflow:hidden;
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
a {
|
||||
color:#f7f7f7;
|
||||
font-weight:400;
|
||||
font-family: 'Lato';
|
||||
text-decoration:none;
|
||||
-webkit-animation: neon1 1.5s ease-in-out infinite alternate;
|
||||
-moz-animation: neon1 1.5s ease-in-out infinite alternate;
|
||||
animation: neon1 1.5s ease-in-out infinite alternate;
|
||||
}
|
||||
|
||||
//Divs
|
||||
#main {
|
||||
}
|
||||
#sign-in {
|
||||
background-color: #F7F7FF;
|
||||
border-radius:15px;
|
||||
margin-left:auto;
|
||||
margin-right:auto;
|
||||
margin-top:18%;
|
||||
margin-bottom:0;
|
||||
height:auto;
|
||||
max-width:600px;
|
||||
box-shadow: 0px 5px 10px #222222;
|
||||
padding-bottom:0;
|
||||
padding-top:0;
|
||||
}
|
||||
button{
|
||||
background: #d94158;
|
||||
background-image: -webkit-linear-gradient(top, #d94158, #ad3838);
|
||||
background-image: -moz-linear-gradient(top, #d94158, #ad3838);
|
||||
background-image: -ms-linear-gradient(top, #d94158, #ad3838);
|
||||
background-image: -o-linear-gradient(top, #d94158, #ad3838);
|
||||
background-image: linear-gradient(to bottom, #d94158, #ad3838);
|
||||
|
||||
border-radius: 9px;
|
||||
outline:0;
|
||||
font: 50px 'Lato';
|
||||
color: #ffffff;
|
||||
padding: 1% 10% 1% 10%;
|
||||
text-decoration: none;
|
||||
margin-left:21.15%;
|
||||
margin-top:2%;
|
||||
margin-bottom:2%;
|
||||
}
|
||||
button:hover {
|
||||
background: #db6b6b;
|
||||
background-image: -webkit-linear-gradient(top, #db6b6b, #d64949);
|
||||
background-image: -moz-linear-gradient(top, #db6b6b, #d64949);
|
||||
background-image: -ms-linear-gradient(top, #db6b6b, #d64949);
|
||||
background-image: -o-linear-gradient(top, #db6b6b, #d64949);
|
||||
background-image: linear-gradient(to bottom, #db6b6b, #d64949);
|
||||
text-decoration: none;
|
||||
}
|
||||
input {
|
||||
margin-left:5%;
|
||||
height:3%;
|
||||
width:89%;
|
||||
font:20px/1.5 'Lato';
|
||||
margin-top:0%
|
||||
}
|
||||
#footer {
|
||||
position:absolute;
|
||||
bottom:0%;
|
||||
right:1%;
|
||||
|
||||
}
|
||||
//Paragraphs
|
||||
p {
|
||||
padding-left:0px;
|
||||
}
|
||||
p.bottom {
|
||||
padding-top:0%;
|
||||
margin-left:auto;
|
||||
margin-right:auto;
|
||||
color:#f7f7f7;
|
||||
max-width:325px;
|
||||
font:27px 'Lato';
|
||||
}
|
||||
p.footer {
|
||||
color:#f7f7f7
|
||||
}
|
||||
//Headers
|
||||
h1 {
|
||||
font-size:28px;
|
||||
}
|
||||
h2 {
|
||||
color:#393939;
|
||||
}
|
||||
h3 {
|
||||
padding-bottom:10px;
|
||||
}
|
||||
h5{
|
||||
margin-left:auto;
|
||||
margin-right:auto;
|
||||
margin-top:12.5%;
|
||||
margin-bottom:0.3%;
|
||||
color:#777;
|
||||
max-width:300px;
|
||||
font-weight:10;
|
||||
padding-top:3%;
|
||||
}
|
||||
h6{
|
||||
margin:0;
|
||||
padding:4% 10% 0% 0%;
|
||||
padding-left:3.6%;
|
||||
}
|
||||
@-webkit-keyframes neon1 {
|
||||
from {
|
||||
text-shadow: 0 0 5px #9f9f9f,
|
||||
0 0 20px #d5d5d5,
|
||||
0 0 30px #d5d5d5,
|
||||
0 0 35px #f9f9f9,
|
||||
0 0 40px #f9f9f9;
|
||||
}
|
||||
to {
|
||||
text-shadow: 0 0 3px #9f9f9f,
|
||||
0 0 10px #d5d5d5,
|
||||
0 0 15px #d5d5d5,
|
||||
0 0 17px #f9f9f9,
|
||||
0 0 20px #f9f9f9,
|
||||
0 0 20px #f9f9f9;
|
||||
}
|
||||
}
|
||||
|
||||
.chromeicon {
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
}
|
||||
8
chromebook-checkout-meteor/client/main.html
Normal file
8
chromebook-checkout-meteor/client/main.html
Normal file
@ -0,0 +1,8 @@
|
||||
<head>
|
||||
<title>IA Chromebook Checkout</title>
|
||||
<link rel="icon" href="../resources/ico/favicon.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
{{> initial}}
|
||||
</body>
|
||||
BIN
chromebook-checkout-meteor/public/fonts/Lato-Light.woff
Normal file
BIN
chromebook-checkout-meteor/public/fonts/Lato-Light.woff
Normal file
Binary file not shown.
BIN
chromebook-checkout-meteor/public/ico/chrico.png
Normal file
BIN
chromebook-checkout-meteor/public/ico/chrico.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
BIN
chromebook-checkout-meteor/public/ico/favicon.png
Normal file
BIN
chromebook-checkout-meteor/public/ico/favicon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.9 KiB |
BIN
chromebook-checkout-meteor/public/images/bg.jpg
Normal file
BIN
chromebook-checkout-meteor/public/images/bg.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 264 KiB |
Loading…
x
Reference in New Issue
Block a user