forked from hts1238/yandex_project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.py
More file actions
40 lines (35 loc) · 735 Bytes
/
style.py
File metadata and controls
40 lines (35 loc) · 735 Bytes
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
BACKGROUND_STYLE = '''
background-color: #334;
font-family: sans-serif;
'''
SENDER_BACKGROUND_STYLE = '''
background-color: #334;
color: #fff;
font-size: 35px;
'''
INPUT_DIALOG_BACKGROUND_STYLE = '''
background-color: #334;
color: #fff;
font-size: 25px;
'''
SENDER_NOW_BACKGROUND_STYLE = '''
background-color: #557;
color: #fff;
font-size: 35px;
'''
MESSAGE_STYLE = '''
font-size: 25px;
color: #fff;
background-color: #557;
border: 2px outset #668;
border-radius: 10px;
min-width: 10em;
padding: 6px;
'''
MESSAGE_SEND_BTN_STYLE = '''
background-color: #334;
border: 2px outset #668;
border-radius: 10px;
min-width: 10em;
padding: 6px;
'''