diff --git a/eventsapp/data/images/bg.png b/eventsapp/data/images/bg.png new file mode 100644 index 0000000..f103ccd Binary files /dev/null and b/eventsapp/data/images/bg.png differ diff --git a/eventsapp/data/images/btn.png b/eventsapp/data/images/btn.png index 1bd240e..1d19725 100644 Binary files a/eventsapp/data/images/btn.png and b/eventsapp/data/images/btn.png differ diff --git a/eventsapp/data/images/logo.png b/eventsapp/data/images/logo.png index 858cd15..f5e9709 100644 Binary files a/eventsapp/data/images/logo.png and b/eventsapp/data/images/logo.png differ diff --git a/eventsapp/data/images/logocopy.png b/eventsapp/data/images/logocopy.png new file mode 100644 index 0000000..21d549b Binary files /dev/null and b/eventsapp/data/images/logocopy.png differ diff --git a/eventsapp/data/images/pattern.jpg b/eventsapp/data/images/pattern.jpg new file mode 100644 index 0000000..9727a84 Binary files /dev/null and b/eventsapp/data/images/pattern.jpg differ diff --git a/eventsapp/data/jsonfiles/about.json b/eventsapp/data/jsonfiles/about.json index 118869b..ee2f43b 100644 --- a/eventsapp/data/jsonfiles/about.json +++ b/eventsapp/data/jsonfiles/about.json @@ -1,7 +1,7 @@ { "0.0.1": [ { - "logo": "eventsapp/data/images/logo.png", + "logo": "data/images/logo.png", "website":"https://in.pycon.org/2018/", "about":"PyCon India, the premier conference in India on using and developing the Python programming language is conducted annually by the Python developer community. It attracts the best Python programmers from across the country and abroad.", "photo": "https://paste.opensuse.org/images/85253798.png", diff --git a/eventsapp/uix/buttons/themebutton.py b/eventsapp/uix/buttons/themebutton.py index 457bfd8..dc26fb6 100644 --- a/eventsapp/uix/buttons/themebutton.py +++ b/eventsapp/uix/buttons/themebutton.py @@ -17,7 +17,7 @@ class ThemeButton(Button): Builder.load_string(''' : - font_size: dp(18) + font_size: dp(12) border: 10, 10, 10, 10 background_normal: root.background_normal background_down: root.background_down diff --git a/eventsapp/uix/screens/aboutscreen.py b/eventsapp/uix/screens/aboutscreen.py index b77abdc..057b34d 100644 --- a/eventsapp/uix/screens/aboutscreen.py +++ b/eventsapp/uix/screens/aboutscreen.py @@ -46,9 +46,9 @@ class AboutScreen(Screen): id: about text: '' text_size: self.size - halign: 'left' + halign: 'center' valign: 'top' - font_size: dp(11) + font_size: dp(10) color: 0, 0, 0, 1 diff --git a/eventsapp/uix/screens/navigationscreen.py b/eventsapp/uix/screens/navigationscreen.py index 724441b..3a5a7d1 100644 --- a/eventsapp/uix/screens/navigationscreen.py +++ b/eventsapp/uix/screens/navigationscreen.py @@ -103,7 +103,7 @@ def on_menu_press(self): spacing: dp(15) canvas.before: Color: - rgba: 69/255., 132/255., 182/255., 1 + rgba: 81/255., 47/255., 122/255., 1 Rectangle: size: self.size pos: self.pos diff --git a/eventsapp/uix/screens/openspacescreen.py b/eventsapp/uix/screens/openspacescreen.py index d5e85f7..3539dad 100644 --- a/eventsapp/uix/screens/openspacescreen.py +++ b/eventsapp/uix/screens/openspacescreen.py @@ -51,14 +51,14 @@ class OpenSpaceScreen(Screen): text_size: self.size halign: 'center' valign: 'center' - font_size: dp(10) + font_size: dp(8) bold: True color: 0, 0, 0, 1 Label: id: about text: '' text_size: self.size - halign: 'left' + halign: 'center' valign: 'top' font_size: dp(10) color: 0, 0, 0, 1 diff --git a/eventsapp/uix/screens/welcomescreen.py b/eventsapp/uix/screens/welcomescreen.py index ab5e0cc..d13a72e 100644 --- a/eventsapp/uix/screens/welcomescreen.py +++ b/eventsapp/uix/screens/welcomescreen.py @@ -9,25 +9,27 @@ from uix.buttons import ThemeButton + class WelcomeScreen(Screen): Builder.load_string(''' name: 'WelcomeScreen' + canvas.before: + Color: + rgba: 1, 1, 1, 1 + Rectangle: + pos: self.pos + size: self.size BoxLayout orientation: 'vertical' TopBar title: 'PyCon India 2018' - color: 196, 12, 76, 1 - RelativeLayout - Image - source: 'data/images/navback.png' - allow_stretch: True - keep_ratio: False + RelativeLayout Image - source: 'data/images/overlay.png' - allow_stretch: True - keep_ratio: False + source: 'data/images/logocopy.png' + allow_stretch: False + keep_ratio: True BoxLayout orientation: 'vertical' Label @@ -35,8 +37,8 @@ class WelcomeScreen(Screen): text_size: self.size valign: 'center' halign: 'center' - font_size: dp(34) - color: 1, 1, 1, 1 + font_size: dp(22) + color: 1,1,1,0 bold: True BoxLayout orientation: 'vertical'