-
Notifications
You must be signed in to change notification settings - Fork 337
Expand file tree
/
Copy pathindex.css
More file actions
executable file
·61 lines (51 loc) · 1.03 KB
/
Copy pathindex.css
File metadata and controls
executable file
·61 lines (51 loc) · 1.03 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
body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
border-radius: 5px;
background-color: #ccc7c2;
padding: 0px 5px 0px 5px;
}
blockquote {
border-left: solid 5px #9ba1b1;
padding-left: 20px;
font-style: italic;
}
.App a {
color: #3f51b5;
text-decoration: none;
}
button {
padding: 10px;
color: white;
/* background-color: #49747b; */
background-color: #3f51b5;
cursor: pointer;
}
.App {
background-color: #f1f1f1;
min-height: 100vh;
/* display: flex; */
/* flex-direction: column; */
font-size: 1rem;
font-weight: 400;
line-height: 24px;
color: black;
}
.cardHeader {
background-color: grey;
}
.cardBody {
background-color: green;
}
.cardFooter {
background-color: yellow
}