-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.js
71 lines (70 loc) · 1.3 KB
/
style.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
const style = {
commentBox: {
width:'80vw',
margin:'0 auto',
fontFamily:'Helvetica, sans-serif'
},
title: {
textAlign:'center',
textTransform:'uppercase'
},
commentList: {
border:'1px solid #f1f1f1',
padding:'0 12px',
maxHeight:'70vh',
overflow:'scroll'
},
comment: {
backgroundColor:'#fafafa',
margin:'10px',
padding:'3px 10px',
fontSize:'.85rem'
},
commentForm: {
margin:'10px',
display:'flex',
flexFlow:'row wrap',
justifyContent:'space-between'
},
commentFormAuthor: {
minWidth:'150px',
margin:'3px',
padding:'0 10px',
borderRadius:'3px',
height:'40px',
flex:'2'
},
commentFormText: {
flex:'4',
minWidth:'400px',
margin:'3px',
padding:'0 10px',
height:'40px',
borderRadius:'3px'
},
commentFormPost: {
minWidth:'75px',
flex:'1',
height:'40px',
margin:'5px 3px',
fontSize:'1rem',
backgroundColor:'#A3CDFD',
borderRadius:'3px',
color:'#fff',
textTransform:'uppercase',
letterSpacing:'.055rem',
border:'none'
},
updateLink: {
textDecoration:'none',
paddingRight:'15px',
fontSize:'.7rem'
},
deleteLink: {
textDecoration:'none',
paddingRight:'15px',
fontSize:'.7rem',
color:'red'
}
}
module.exports = style;