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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
const styles = theme => ({
appBar: {
position: 'relative',
},
flex: {
flex: 1,
},
title: {
display: 'block',
margin: `${theme.spacing(3)}px 0`,
color: theme.palette.common.white,
},
searchSettings: {
marginBottom: theme.spacing(4),
},
wrapper: {
fontFamily: theme.typography.fontFamily,
position: 'relative',
marginRight: theme.spacing(2),
marginLeft: theme.spacing(1),
borderRadius: 2,
display: 'block',
},
search: {
width: 'auto',
height: '100%',
position: 'absolute',
pointerEvents: 'none',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
},
input: {
font: 'inherit',
padding: `${theme.spacing(1)}px ${theme.spacing(1)}px ${theme.spacing(1)}px ${theme.spacing(4)}px`,
border: 0,
display: 'block',
verticalAlign: 'middle',
whiteSpace: 'normal',
background: 'none',
margin: 0, // Reset for Safari
color: 'inherit',
width: '100%',
'&:focus': {
outline: 0,
},
},
iconTitle: {
position: 'relative',
marginRight: theme.spacing(0.5),
},
button: {
display: 'block',
width: '100%',
background: theme.palette.grey[50],
'&:hover': {
background: theme.palette.secondary.light
},
'& $icon': {
margin: '0 auto',
display: 'block',
fontSize: 64
},
'& $info': {
display: 'block',
textTransform: 'none',
color: theme.palette.grey[500]
}
},
info: {},
icon: {},
formControl: {
margin: theme.spacing(1),
minWidth: 120,
},
selectEmpty: {
marginTop: theme.spacing(2),
},
iconSmall: {
fontSize: 20,
},
leftIcon: {
marginRight: theme.spacing(1),
},
});
export default styles;
|