-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.kv
35 lines (30 loc) · 832 Bytes
/
main.kv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#:include login.kv
<Inicio>:
FloatLayout:
canvas:
Color:
rgb: 0.98, 1, 0
BoxLayout:
padding: 10
spacing: 10
size_hint: 1, None
pos_hint: {'top': 1}
height: 44
Image:
size_hint: None, None
size: 24, 24
source: 'media/logo.png'
BoxLayout
id: login_layout
orientation: 'vertical'
background_color: (0.98, 1, 1, 1)
Button:
text: 'Log In'
font_size: 24
background_color: (2.7, 0.0, 1.0, 1.0)
on_press: root.do_inicio()
Button:
text: 'Go back'
font_size: 24
background_color: (0.0, 1.5, 15.0, 1.0)
on_press: root.do_inicio()