forked from krambertech/react-essential-course
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
74 lines (60 loc) · 1.1 KB
/
style.css
File metadata and controls
74 lines (60 loc) · 1.1 KB
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
body {
font-family: sans-serif;
}
.container {
display: flex;
}
.App {
margin: 20px;
width: 250px;
}
#screen {
max-height: 500px;
overflow: auto;
list-style-type: none;
width: 250px;
}
#screen li {
display: block;
padding: 5px;
}
#screen li.render {
background-color: Aquamarine ;
color: black;
}
#screen li.getInitialState {
background-color: DeepSkyBlue;
color: white;
}
#screen li.componentWillMount {
background-color: orange;
color: white;
}
#screen li.componentDidMount {
background-color: purple;
color: white;
}
#screen li.getDefaultProps {
background-color: grey;
color: white;
}
#screen li.componentWillReceiveProps {
background-color: HotPink;
color: white;
}
#screen li.componentWillUpdate {
background-color: CornflowerBlue;
color: white;
}
#screen li.componentDidUpdate {
background-color: IndianRed;
color: white;
}
#screen li.shouldComponentUpdate {
background-color: SandyBrown;
color: white;
}
#screen li.componentWillUnmount {
background-color: Indigo ;
color: white;
}