-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.css
127 lines (110 loc) · 1.72 KB
/
index.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
html, body {
margin: 0;
padding: 0;
}
.page {
background-color: #000000;
font-style: normal;
font-weight: 900;
color: #FFFFFF;
}
.page__content {
max-width: 700px;
margin: 0 auto;
display: flex;
flex-direction: column;
min-height: 100vh;
}
.header {
margin: 0;
padding: 0 96px 0 54px;
}
.header__title {
font-weight: 900;
font-size: 60px;
line-height: 73px;
text-align: center;
}
.todos {
flex-grow: 1;
}
.todos__form {
margin-bottom: 30px;
display: flex;
}
.todos__input{
flex-grow: 1;
background: #FFFFFF;
border-radius: 5px;
font-weight: 900;
font-size: 24px;
line-height: 29px;
color: #000000;
border: 0;
padding: 20px;
outline: 0;
}
.todos__submit-btn {
width: 180px;
padding: 20px 0;
background: #FFFFFF;
border-radius: 5px;
font-weight: 900;
font-size: 24px;
line-height: 29px;
border: 0;
flex-shrink: 0;
margin-left: 10px;
cursor: pointer;
}
.todos__list {
list-style-type: none;
padding: 0;
}
.todo {
display: flex;
padding: 44px;
align-items: center;
margin-bottom: 10px;
border: 1px solid #6F6F6F;
box-sizing: border-box;
border-radius: 5px;
}
.todo:last-child {
margin-bottom: 0;
}
.todo__text{
font-weight: 900;
font-size: 24px;
line-height: 29px;
color: #FFFFFF;
margin: 0;
flex-grow: 1;
}
.todo__btn {
width: 23px;
height: 23px;
margin-right: 30px;
background-color: transparent;
cursor: pointer;
flex-shrink: 0;
border: 0;
}
.todo__btn:last-child {
margin-right: 0;
}
.footer {
padding: 120px 0 54px 0;
font-size: 18px;
line-height: 150%;
text-align: center;
color: #898989;
}
.button {
opacity: 1;
transition: opacity .15s ease-in-out;
outline: 0;
}
.button:hover {
opacity: .7;
}