initial commit

This commit is contained in:
2018-06-17 20:28:44 +02:00
commit 7300faff00
14 changed files with 11091 additions and 0 deletions

48
static/css/reset.css Normal file
View File

@@ -0,0 +1,48 @@
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}

26
static/css/style.css Normal file
View File

@@ -0,0 +1,26 @@
html, body {
width: 100%;
height: 100%; }
h1 {
font-size: xx-large;
font-weight: bolder; }
#topcards > .card {
display: inline-block; }
.card-ace {
position: relative;
-webkit-transition: left 0.25s;
-moz-transition: left 0.25s;
-ms-transition: left 0.25s;
-o-transition: left 0.25s;
transition: left 0.25s;
display: inline; }
.card {
height: 100px; }
.card svg {
height: 100px; }
/*# sourceMappingURL=style.css.map */

7
static/css/style.css.map Normal file
View File

@@ -0,0 +1,7 @@
{
"version": 3,
"mappings": "AAAA,UAAU;EACR,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;;AAEd,EAAE;EACA,SAAS,EAAE,QAAQ;EACnB,WAAW,EAAE,MAAM;;AAErB,iBAAiB;EACf,OAAO,EAAE,YAAY;;AAEvB,SAAS;EACP,QAAQ,EAAE,QAAQ;EAClB,kBAAkB,EAAE,UAAU;EAC9B,eAAe,EAAE,UAAU;EAC3B,cAAc,EAAE,UAAU;EAC1B,aAAa,EAAE,UAAU;EACzB,UAAU,EAAE,UAAU;EACtB,OAAO,EAAE,MAAM;;AAEjB,KAAK;EACH,MAAM,EAAE,KAAK;EACb,SAAG;IACD,MAAM,EAAE,KAAK",
"sources": ["style.sass"],
"names": [],
"file": "style.css"
}

24
static/css/style.sass Normal file
View File

@@ -0,0 +1,24 @@
html, body
width: 100%
height: 100%
h1
font-size: xx-large
font-weight: bolder
#topcards > .card
display: inline-block
.card-ace
position: relative
-webkit-transition: left 0.25s
-moz-transition: left 0.25s
-ms-transition: left 0.25s
-o-transition: left 0.25s
transition: left 0.25s
display: inline
.card
height: 100px
svg
height: 100px