Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Initial structure | 7edeb6fe242457e31b93445a7d821c078b0712a9 | Gabriel Balasz | 2015-12-01 23:18:58 |
Initial commit | 68c7516c3ec73198c7bcbd8a3dd38bfd721e613c | Gabriel Balasz | 2015-12-01 22:42:34 |
File | Lines added | Lines deleted |
---|---|---|
app/css/app.css | 22 | 0 |
app/css/page.css | 18 | 0 |
app/css/themes/dark.css | 112 | 0 |
app/css/themes/default.css | 113 | 0 |
app/css/themes/light.css | 112 | 0 |
app/css/utils.css | 5 | 0 |
app/fonts/Ovo-Regular.ttf | 0 | 0 |
app/fonts/Tinos-Regular.ttf | 0 | 0 |
app/images/bitvice_mobile.png | 0 | 0 |
app/images/christ_icon.jpg | 0 | 0 |
app/images/logo.png | 0 | 0 |
app/images/old_paper.jpg | 0 | 0 |
app/index.html | 29 | 0 |
index.html | 20 | 0 |
File app/css/app.css added (mode: 100644) (index 0000000..aca2251) | |||
1 | @font-face { | ||
2 | font-family: 'Ovo'; | ||
3 | src: url('../fonts/Ovo-Regular.ttf') format('truetype'); | ||
4 | } | ||
5 | |||
6 | @font-face { | ||
7 | font-family: 'Tinos'; | ||
8 | src: url('../fonts/Tinos-Regular.ttf') format('truetype'); | ||
9 | } | ||
10 | |||
11 | |||
12 | |||
13 | html, body, ul, ol { | ||
14 | margin: 0; | ||
15 | padding: 0; | ||
16 | } | ||
17 | |||
18 | ul, ol { list-style: none; } | ||
19 | |||
20 | body { | ||
21 | font-family: 'Ovo', serif; | ||
22 | } |
File app/css/page.css added (mode: 100644) (index 0000000..8e77dae) | |||
1 | .oPage { | ||
2 | position: fixed; | ||
3 | top: 0 ; | ||
4 | bottom: 0 ; | ||
5 | left: 100%; | ||
6 | width: 100%; | ||
7 | |||
8 | background-image: url('../images/old_paper.jpg'); | ||
9 | } | ||
10 | |||
11 | .oPage.isActive { | ||
12 | left: 0; | ||
13 | } | ||
14 | |||
15 | .oPage.isRendered { | ||
16 | left: -100%; | ||
17 | } | ||
18 |
File app/css/themes/dark.css added (mode: 100644) (index 0000000..b8043e1) | |||
1 | body | ||
2 | { | ||
3 | background-color: #000; | ||
4 | background-size: 110%; | ||
5 | margin: 0; | ||
6 | padding: 5% 2% 4em; | ||
7 | color: #fff; | ||
8 | font-family: serif; | ||
9 | } | ||
10 | |||
11 | body.text-small { font-size: 62.5%; } | ||
12 | body.text-normal { font-size: 80%; } | ||
13 | body.text-large { font-size: 100%; } | ||
14 | |||
15 | h1 | ||
16 | { | ||
17 | font-size: 1.6em; | ||
18 | } | ||
19 | h3 | ||
20 | { | ||
21 | font-size: 1.4em; | ||
22 | } | ||
23 | h4 | ||
24 | { | ||
25 | font-size: 1.2em; | ||
26 | } | ||
27 | |||
28 | h1.red | ||
29 | { | ||
30 | text-transform: uppercase; | ||
31 | } | ||
32 | |||
33 | h1,h2,h3,h4 { | ||
34 | color: #e20000; | ||
35 | text-align: center; | ||
36 | } | ||
37 | |||
38 | .drop-caps { | ||
39 | font-size: 300%; | ||
40 | line-height: 0.8em; | ||
41 | margin-right: 0.1em; | ||
42 | padding-bottom: 0.1em; | ||
43 | text-transform: uppercase; | ||
44 | float: left; | ||
45 | position: relative; | ||
46 | top: 4px; | ||
47 | color: #e20000 !important; | ||
48 | } | ||
49 | |||
50 | .directive { | ||
51 | font-size: .9em; | ||
52 | color: #e20000; | ||
53 | } | ||
54 | |||
55 | span.directive { font-size: .75em; } | ||
56 | |||
57 | p, li | ||
58 | { | ||
59 | text-indent: 0; | ||
60 | font-size: 1.2em; | ||
61 | text-align: justify; | ||
62 | line-height: 2em; | ||
63 | clear: both; | ||
64 | } | ||
65 | p.centered | ||
66 | { | ||
67 | text-indent: 0; | ||
68 | text-align: center; | ||
69 | padding: 0.5em 0 0; | ||
70 | } | ||
71 | .red | ||
72 | { | ||
73 | color: #e20000; | ||
74 | } | ||
75 | .black | ||
76 | { | ||
77 | color: #fff; | ||
78 | } | ||
79 | ol | ||
80 | { | ||
81 | padding-left: 2.4em; | ||
82 | } | ||
83 | ol li | ||
84 | { | ||
85 | margin: 0; | ||
86 | text-indent: 0; | ||
87 | } | ||
88 | |||
89 | #footer | ||
90 | { | ||
91 | position: fixed; | ||
92 | bottom: 0; | ||
93 | height: 32px; | ||
94 | width: 96%; | ||
95 | } | ||
96 | |||
97 | .btn-size | ||
98 | { | ||
99 | float: right; | ||
100 | padding: 5px 10px; | ||
101 | width: 40px; | ||
102 | height: 18px; | ||
103 | border-radius: 5px; | ||
104 | background-color: #ccc; | ||
105 | color: #e20000; | ||
106 | text-align:center; | ||
107 | text-decoration: none; | ||
108 | } | ||
109 | .btn-size > span.active { color: #333; } | ||
110 | .btn-size .size-small { font-size: 10px; } | ||
111 | .btn-size .size-normal { font-size: 13px; } | ||
112 | .btn-size .size-large { font-size: 16px; } |
File app/css/themes/default.css added (mode: 100644) (index 0000000..f1a885e) | |||
1 | body | ||
2 | { | ||
3 | background-color: #FCF3CA; | ||
4 | background-image:url('old_paper.jpg'); | ||
5 | background-size: 110%; | ||
6 | margin: 0; | ||
7 | padding: 5% 2% 4em; | ||
8 | color: #000; | ||
9 | font-family: serif; | ||
10 | } | ||
11 | |||
12 | body.text-small { font-size: 62.5%; } | ||
13 | body.text-normal { font-size: 80%; } | ||
14 | body.text-large { font-size: 100%; } | ||
15 | |||
16 | h1 | ||
17 | { | ||
18 | font-size: 1.6em; | ||
19 | } | ||
20 | h3 | ||
21 | { | ||
22 | font-size: 1.4em; | ||
23 | } | ||
24 | h4 | ||
25 | { | ||
26 | font-size: 1.2em; | ||
27 | } | ||
28 | |||
29 | h1.red | ||
30 | { | ||
31 | text-transform: uppercase; | ||
32 | } | ||
33 | |||
34 | h1,h2,h3,h4 { | ||
35 | color: #e20000; | ||
36 | text-align: center; | ||
37 | } | ||
38 | |||
39 | .drop-caps { | ||
40 | font-size: 300%; | ||
41 | line-height: 0.8em; | ||
42 | margin-right: 0.1em; | ||
43 | padding-bottom: 0.1em; | ||
44 | text-transform: uppercase; | ||
45 | float: left; | ||
46 | position: relative; | ||
47 | top: 4px; | ||
48 | color: #e20000 !important; | ||
49 | } | ||
50 | |||
51 | .directive { | ||
52 | font-size: .9em; | ||
53 | color: #e20000; | ||
54 | } | ||
55 | |||
56 | span.directive { font-size: .75em; } | ||
57 | |||
58 | p, li | ||
59 | { | ||
60 | text-indent: 0; | ||
61 | font-size: 1.2em; | ||
62 | text-align: justify; | ||
63 | line-height: 1.4em; | ||
64 | clear: both; | ||
65 | } | ||
66 | p.centered | ||
67 | { | ||
68 | text-indent: 0; | ||
69 | text-align: center; | ||
70 | padding: 0.5em 0 0; | ||
71 | } | ||
72 | .red | ||
73 | { | ||
74 | color: #e20000; | ||
75 | } | ||
76 | .black | ||
77 | { | ||
78 | color: #000; | ||
79 | } | ||
80 | ol | ||
81 | { | ||
82 | padding-left: 2.4em; | ||
83 | } | ||
84 | ol li | ||
85 | { | ||
86 | margin: 0; | ||
87 | text-indent: 0; | ||
88 | } | ||
89 | |||
90 | #footer | ||
91 | { | ||
92 | position: fixed; | ||
93 | bottom: 0; | ||
94 | height: 32px; | ||
95 | width: 96%; | ||
96 | } | ||
97 | |||
98 | .btn-size | ||
99 | { | ||
100 | float: right; | ||
101 | padding: 5px 10px; | ||
102 | width: 40px; | ||
103 | height: 18px; | ||
104 | border-radius: 5px; | ||
105 | background-color: #000; | ||
106 | color: #e20000; | ||
107 | text-align:center; | ||
108 | text-decoration: none; | ||
109 | } | ||
110 | .btn-size > span.active { color: #fff; } | ||
111 | .btn-size .size-small { font-size: 10px; } | ||
112 | .btn-size .size-normal { font-size: 13px; } | ||
113 | .btn-size .size-large { font-size: 16px; } |
File app/css/themes/light.css added (mode: 100644) (index 0000000..53bcbc2) | |||
1 | body | ||
2 | { | ||
3 | background-color: #f5f5f5; | ||
4 | background-size: 110%; | ||
5 | margin: 0; | ||
6 | padding: 5% 2% 4em; | ||
7 | color: #333; | ||
8 | font-family: serif; | ||
9 | } | ||
10 | |||
11 | body.text-small { font-size: 62.5%; } | ||
12 | body.text-normal { font-size: 80%; } | ||
13 | body.text-large { font-size: 100%; } | ||
14 | |||
15 | h1 | ||
16 | { | ||
17 | font-size: 1.6em; | ||
18 | } | ||
19 | h3 | ||
20 | { | ||
21 | font-size: 1.4em; | ||
22 | } | ||
23 | h4 | ||
24 | { | ||
25 | font-size: 1.2em; | ||
26 | } | ||
27 | |||
28 | h1.red | ||
29 | { | ||
30 | text-transform: uppercase; | ||
31 | } | ||
32 | |||
33 | h1,h2,h3,h4 { | ||
34 | color: #e20000; | ||
35 | text-align: center; | ||
36 | } | ||
37 | |||
38 | .drop-caps { | ||
39 | font-size: 300%; | ||
40 | line-height: 0.8em; | ||
41 | margin-right: 0.1em; | ||
42 | padding-bottom: 0.1em; | ||
43 | text-transform: uppercase; | ||
44 | float: left; | ||
45 | position: relative; | ||
46 | top: 4px; | ||
47 | color: #e20000 !important; | ||
48 | } | ||
49 | |||
50 | .directive { | ||
51 | font-size: .9em; | ||
52 | color: #e20000; | ||
53 | } | ||
54 | |||
55 | span.directive { font-size: .75em; } | ||
56 | |||
57 | p, li | ||
58 | { | ||
59 | text-indent: 0; | ||
60 | font-size: 1.2em; | ||
61 | text-align: justify; | ||
62 | line-height: 2em; | ||
63 | clear: both; | ||
64 | } | ||
65 | p.centered | ||
66 | { | ||
67 | text-indent: 0; | ||
68 | text-align: center; | ||
69 | padding: 0.5em 0 0; | ||
70 | } | ||
71 | .red | ||
72 | { | ||
73 | color: #e20000; | ||
74 | } | ||
75 | .black | ||
76 | { | ||
77 | color: #333; | ||
78 | } | ||
79 | ol | ||
80 | { | ||
81 | padding-left: 2.4em; | ||
82 | } | ||
83 | ol li | ||
84 | { | ||
85 | margin: 0; | ||
86 | text-indent: 0; | ||
87 | } | ||
88 | |||
89 | #footer | ||
90 | { | ||
91 | position: fixed; | ||
92 | bottom: 0; | ||
93 | height: 32px; | ||
94 | width: 96%; | ||
95 | } | ||
96 | |||
97 | .btn-size | ||
98 | { | ||
99 | float: right; | ||
100 | padding: 5px 10px; | ||
101 | width: 40px; | ||
102 | height: 18px; | ||
103 | border-radius: 5px; | ||
104 | background-color: #000; | ||
105 | color: #e20000; | ||
106 | text-align:center; | ||
107 | text-decoration: none; | ||
108 | } | ||
109 | .btn-size > span.active { color: #fff; } | ||
110 | .btn-size .size-small { font-size: 10px; } | ||
111 | .btn-size .size-normal { font-size: 13px; } | ||
112 | .btn-size .size-large { font-size: 16px; } |
File app/css/utils.css added (mode: 100644) (index 0000000..3223984) | |||
1 | /* Utilities */ | ||
2 | |||
3 | .uCenter { text-align: center !important; } | ||
4 | .uLeft { text-align: left !important; } | ||
5 | .uRight { text-align: right !important; } |
File app/fonts/Ovo-Regular.ttf added (mode: 100644) (index 0000000..9b4a50a) |
File app/fonts/Tinos-Regular.ttf added (mode: 100644) (index 0000000..ae5030d) |
File app/images/bitvice_mobile.png added (mode: 100644) (index 0000000..3108fe0) |
File app/images/christ_icon.jpg added (mode: 100644) (index 0000000..ab3b364) |
File app/images/logo.png added (mode: 100644) (index 0000000..940ed16) |
File app/images/old_paper.jpg added (mode: 100644) (index 0000000..a4dfb85) |
File app/index.html added (mode: 100644) (index 0000000..11088c1) | |||
1 | <!doctype html> | ||
2 | <html> | ||
3 | <head> | ||
4 | <link rel="stylesheet" href="css/app.css" type="text/css"> | ||
5 | <link rel="stylesheet" href="css/page.css" type="text/css"> | ||
6 | <link rel="stylesheet" href="css/utils.css" type="text/css"> | ||
7 | </head> | ||
8 | <body> | ||
9 | |||
10 | <ul class="oPage_list"> | ||
11 | <li id="page0" class="oPage isActive uCenter"> | ||
12 | <img src="images/logo.png" /> | ||
13 | |||
14 | <h1>Texte Liturgice Ortodoxe</h1> | ||
15 | |||
16 | <small>V 5.0.0</small> | ||
17 | |||
18 | <p id="debug"></p> | ||
19 | </li> | ||
20 | </ul> | ||
21 | |||
22 | <!-- -------------------------------------- --> | ||
23 | |||
24 | <script type="text/javascript"> | ||
25 | // js here | ||
26 | </script> | ||
27 | |||
28 | </body> | ||
29 | </html> |
File index.html added (mode: 100644) (index 0000000..c327029) | |||
1 | <!doctype html> | ||
2 | <html> | ||
3 | <head> | ||
4 | <link rel="stylesheet" href="css/app.css" type="text/css"> | ||
5 | </head> | ||
6 | <body> | ||
7 | <h1>Texte Liturgice Ortodoxe</h1> | ||
8 | |||
9 | <img src="images/logo.png" /> | ||
10 | |||
11 | <p id="debug"></p> | ||
12 | |||
13 | <!-- -------------------------------------- --> | ||
14 | |||
15 | <script type="text/javascript"> | ||
16 | // js here | ||
17 | </script> | ||
18 | |||
19 | </body> | ||
20 | </html> |