forked from PromoSncfToulouse2022-2023/todo-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
61 lines (53 loc) · 1005 Bytes
/
styles.css
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
html {
box-sizing: border-box;
}
*, *::before, *::after {
box-sizing: inherit;
margin: 0;
padding: 0;
}
body {
font-family:
-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans,
Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
line-height: 1.4;
}
form {
width: 100%;
display: flex;
justify-content: space-between;
flex-direction: column;
align-items: center;
}
input[type="text"] {
width: 100%;
padding: 10px;
border-radius: 4px;
border: 3px solid #666;
margin-top: 4px;
}
.container {
width: 100%;
max-width: 500px;
margin: 0 auto;
padding-left: 10px;
padding-right: 10px;
color: #333;
height: 90vh;
margin-top: 5vh;
margin-bottom: 5vh;
overflow-y: auto;
}
.app-title {
text-align: center;
margin-bottom: 20px;
font-size: 80px;
opacity: 0.8;
}
.todo-list {
list-style: none;
margin-bottom: 20px;
}
.todo-list:empty {
display: none;
}