forked from num-js/ToDo-App-React-SourceCode
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathApp.css
More file actions
59 lines (50 loc) · 1 KB
/
Copy pathApp.css
File metadata and controls
59 lines (50 loc) · 1 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
body{
margin: 0;
padding: 0;
background-color: #0cbaba;
background-image: linear-gradient(315deg, #0cbaba 0%, #380036ec 74%);
}
.container{
background-color: #7f5a83;
background-image: linear-gradient(315deg, #0d324d, #7f5a83);
min-height: 570px;
/* width: 400px; */
margin: 40px auto;
padding: 10px;
border-radius: 5px;
}
.secJumbotron{
padding: 0px;
margin: 0px;
}
#to-do-form{
padding: 0px;
margin: 0px;
}
#to-do-form input{
background-color: rgb(27,112,137);
border: 0;
width: 180px;
height: 50px;
padding: 0 20px;
margin: 20px;
font-size: 18px;
border-radius: 5px;
color: white;
}
#to-do-form button{
height: 50px;
width: 80px;
border-radius: 5px;
border: 0;
background-color: rgb(171, 224, 22);
cursor: pointer;
font-weight: bolder;
color: #3f3160;
font-size: medium;
}
#to-do-form button:hover{
background-color: rgb(109, 146, 16);
color: white;
outline: none;
}