-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.js
76 lines (75 loc) · 1.6 KB
/
styles.js
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
import { makeStyles } from '@material-ui/core/styles';
export default makeStyles((theme) => ({
footer: {
textAlign: 'center',
position: 'fixed',
left: 0,
bottom: 0,
color: 'black',
width: '100%',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
height: '120px',
[theme.breakpoints.down('sm')]: {
display: 'none',
},
},
link: {
textDecoration: 'none',
color: 'rgba(21, 101, 192)',
},
image: {
marginLeft: 20,
},
card: {
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
width: '50%',
padding: '3%',
borderRadius: 10,
color: 'white',
backgroundColor: 'rgba(21, 101, 192)',
margin: '0 12px',
textAlign: 'center',
height: '25vmin',
[theme.breakpoints.down('sm')]: {
flexDirection: 'column-reverse',
textAlign: 'center',
width: '100%',
height: 'initial',
'&:nth-of-type(1)': {
marginBottom: '12px',
},
},
},
infoContainer: {
display: 'flex',
alignItems: 'center',
justifyContent: 'space-around',
[theme.breakpoints.down('sm')]: {
flexDirection: 'column',
},
},
logoContainer: {
padding: '0 5%',
display: 'flex',
justifyContent: 'space-around',
alignItems: 'center',
width: '100%',
[theme.breakpoints.down('sm')]: {
flexDirection: 'column-reverse',
textAlign: 'center',
},
},
alanLogo: {
height: '27vmin',
borderRadius: '15%',
padding: '0 5%',
margin: '3% 0',
[theme.breakpoints.down('sm')]: {
height: '35vmin',
},
},
}));