forked from AdaGold/react-chatlog
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathApp.css
More file actions
91 lines (73 loc) · 1.08 KB
/
App.css
File metadata and controls
91 lines (73 loc) · 1.08 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#App {
background-color: #87cefa;
}
#App header {
background-color: #222;
color: #fff;
padding-bottom: 0.5rem;
position: fixed;
width: 100%;
z-index: 100;
text-align: center;
align-items: center;
}
#App main {
padding-left: 2em;
padding-right: 2em;
padding-bottom: 5rem;
padding-top: 10rem;
}
#App h1 {
font-size: 1.5em;
text-align: center;
display: inline-block;
}
#App h3 {
margin-block-start: 0.2em;
margin-block-end: 0.2em;
}
#App header section {
background-color: #e0ffff;
}
#header-container {
color: #222;
display: flex;
justify-content: space-evenly;
margin: auto;
max-width: 50rem;
}
#App .widget {
display: inline-block;
line-height: 1em;
border-radius: 10px;
color: black;
font-size: 0.8em;
padding-left: 1em;
padding-right: 1em;
font-weight: bold;
}
#App #heartWidget {
font-size: 1.5em;
margin: 1em;
}
#App span {
display: inline-block
}
.red {
color: #b22222
}
.orange {
color: #e6ac00
}
.yellow {
color: #e6e600
}
.green {
color: green
}
.blue {
color: blue
}
.purple {
color: purple
}