├── Config.xml
├── bootstrap
├── css
│ └── style.css
└── js
│ ├── bootstrap.min.js
│ └── jquery.min.js
├── index.html
└── js
├── underscore.js
└── backbone.js
/Config.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 |
10 | Your Vote Counts
11 |
12 |
13 | Just election monitoring app
14 |
15 |
16 |
17 | Moe Hein Kyaw
18 |
19 |
20 |
--------------------------------------------------------------------------------
/bootstrap/css/style.css:
--------------------------------------------------------------------------------
1 |
2 | * {
3 | -webkit-touch-callout: none;
4 | -webkit-text-size-adjust: none;
5 | -webkit-tap-highlight-color: rgba(0,0,0,0);
6 | -webkit-user-select: none;
7 | }
8 |
9 | body {
10 | -webkit-touch-callout: none;
11 | -webkit-text-size-adjust: none;
12 | -webkit-user-select: none;
13 | }
14 |
15 | label.form-label {
16 | font-size: 1.5em;
17 | font-weight: normal;
18 | }
19 |
20 | .btn {
21 | margin-top: 0.5em;
22 | }
23 |
24 | .btn.btn-lg.btn-fixed {
25 | /* width: 7em;
26 | */}
27 |
28 | .btn.btn-lg {
29 | margin-right: 1em;
30 | }
31 |
32 | .btn-bold {
33 | font-weight: bold;
34 | }
35 |
36 | fieldset {
37 | padding: 0.75em 0.5em;
38 | }
39 |
40 | .bg-grey {
41 | background-color: #ECF0F1;
42 | }
43 |
44 | .bg-grey-1 {
45 | background-color: #fff;
46 | }
47 |
48 | .container-fluid {
49 | margin: 0;
50 | }
51 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |