-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
57 lines (51 loc) · 1.14 KB
/
styles.css
File metadata and controls
57 lines (51 loc) · 1.14 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
body {
margin: 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;
}
h1 {
padding-left: 30px;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto";
color: rgb(224, 158, 158);
background-color: #afafaf;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
}
.app {
background: #a8d0eb;
padding: 30px;
height: 90vh;
}
.todo-list {
background: #afafaf;
border-radius: 4px;
padding: 5px;
max-width: 300px;
}
.todo {
background: rgb(224, 158, 158);
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
padding: 3px 10px;
font-size: 24px;
margin-bottom: 6px;
border-radius: 3px;
display: flex;
align-items: center;
justify-content: space-between;
}
.input {
width: 100%;
box-sizing: border-box;
border: 0;
border-radius: 4px;
box-shadow: none;
padding: 1rem;
height: 2.25em;
font-size: 24px;
}