-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
75 lines (62 loc) · 1.39 KB
/
styles.css
File metadata and controls
75 lines (62 loc) · 1.39 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
#header {
text-align: center;
font-family: Garamond, serif;
font-size: 5vw;
color: black;
}
body {
background-color: blueviolet;
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;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
.app {
padding: 30px;
height: 100vh;
}
.todo-list{
background: gray;
border-radius: 4px;
padding: 5px;
}
button {
background-color: black;
border-radius: 4px;
font-size: 1em;
color: rgb(254, 254, 254);
font-weight: 900;
width: 20%;
}
.todo{
background: rgb(255, 255, 255);
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;
}
@media screen and (max-width: 620px) {
.todo-list,
h1, .app, .input{
width: auto;
}}