-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadminscreen.kv
53 lines (48 loc) · 1.21 KB
/
adminscreen.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<AdminScreen>:
BoxLayout:
orientation:'vertical'
spacing:30
padding:[10,20,20,10]
BoxLayout:
orientation:'horizontal'
size_hint_y:.2
#padding:[20,20]
Button:
text:'Back'
on_press:root.GoBack()
size_hint:1,1
#pos_hint: {'center_x':.5, 'center_y':.5}
Label:
text:''
font_size:28
size_hint:1,.2
markup:True
color:0,1,1,1
Label:
text:'[font=Broadway]This section is for Admins only[/font]'
font_size:24
size_hint:1,.2
markup:True
color:0,1,1,1
Label:
text:''
font_size:28
size_hint:1,.2
markup:True
color:0,1,1,1
Button:
text:'Manage '
size_hint:1,.2
on_press:root.GoManage()
pos_hint: {'center_x':.5, 'center_y':.5}
Button:
text:'Track'
size_hint:1,.2
on_press:root.GoTrack()
pos_hint: {'center_x':.5, 'center_y':.5}
Label:
text:''
font_size:28
size_hint:1,.2
markup:True
color:0,1,1,1