forked from njsh4261/swpp-react-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathNewTodo.css
More file actions
41 lines (37 loc) · 718 Bytes
/
NewTodo.css
File metadata and controls
41 lines (37 loc) · 718 Bytes
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
.NewTodo {
width: 80%;
margin: 20px auto;
border: 1px solid #eee;
box-shadow: 0 2px 3px #ccc;
text-align: center;
}
.NewTodo label {
display: block;
margin: 10px auto;
text-align: center;
font-weight: bold;
}
.NewTodo input,
.NewTodo textarea {
display: block;
width: 80%;
box-sizing: border-box;
border: 1px solid black;
outline: none;
font: inherit;
margin: auto;
}
.NewTodo button {
margin: 5px 0;
padding: 10px;
font: inherit;
border: 1px solid #fa923f;
background-color: transparent;
color: #fa923f;
cursor: pointer;
}
.NewTodo button:hover,
.NewTodo button:active {
color: white;
background-color: #fa923f;
}