-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
94 lines (82 loc) · 1.49 KB
/
style.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
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
92
93
94
* {
box-sizing: border-box;
margin: 0;
}
body {
background: rgba(251, 251, 251, 0.9);
}
.todo {
display: grid;
justify-items: center;
grid-row-gap: 32px;
padding-top: 96px;
}
input {
background-color: #ffffff;
padding: 10px 10px;
border: none;
cursor: text;
font-size: 16px;
line-height: 24px;
width: 100%;
overflow: hidden;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
max-width: 758px;
height: 56px;
}
.input {
max-width: 758px;
width: 100%;
}
.category {
background: #ffffff;
width: 100%;
max-width: 758px;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
.h1 {
font-family: Roboto Mono;
font-style: normal;
font-weight: normal;
font-size: 48px;
line-height: 100%;
margin: 0px;
}
p {
font-family: Roboto;
font-size: 14px;
}
.subheader {
font-family: Roboto;
font-style: normal;
font-weight: bold;
font-size: 16px;
line-height: 24px;
color: #000000;
padding: 16px 16px;
margin: 0;
width: 100%;
}
hr {
align-items: center;
width: 100%;
background: #b1afaf;
height: 0.5px;
opacity: 0.3;
max-width: 726px;
padding-right: 16px;
}
button {
border: none;
background-color: transparent;
}
.buttons {
padding-right: 10px;
}
.subCategory {
display: flex;
flex-wrap: wrap;
padding-left: 16px;
padding-bottom: 8px;
justify-content: space-between;
}