-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtodoapp.css
More file actions
127 lines (107 loc) · 1.91 KB
/
Copy pathtodoapp.css
File metadata and controls
127 lines (107 loc) · 1.91 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
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
body{
font-family: cursive;
color: #444;
letter-spacing: 1px;
}
h1,h2{
font-weight: normal;
}
#wrapper{
width: 90%;
max-width: 960px;
margin: 20px auto;
border-radius: 6px;
box-shadow: -20px 50px 200px aqua;
padding: 0 0 20px;
overflow: hidden;
border: 1px solid lightgray;
}
#page-banner{
background: #D3D3D3;
padding: 10px 0;
}
#page-banner h1, #page-banner p{
width: 100%;
text-align: center;
margin: 10px, 0;
}
#page-banner input{
width: 90%;
max-width: 300px;
margin: 20px auto;
display: block;
padding: 8px;
border: 1px solid #ddd;
border-radius: 8px;
font-size: 16px;
color: #444;
}
#movie-list, #add-movie, #tabbed-content{
margin: 30px;
}
#movie-list ul, #tabbed-content ul{
list-style-type: none;
padding: 0;
}
#movie-list li{
padding: 20px;
border-left: 5px solid #ddd;
margin: 20px 10px;
}
#movie-list li:hover{
border-color: #ce4949;
}
.delete{
float: right;
background: #d1458b;
padding: 6px;
border-radius: 4px;
cursor: pointer;
color: white;
}
.delete:hover{
background: #333;
}
#add-movie{
width: 400px;
margin: 0 auto;
}
#add-movie input{
display: block;
margin: 20px 0;
padding: 10px;
border: 1px solid #ccc;
font-size: 16px;
border-radius: 4px 0 0 4px;
box-sizing: border-box;
width: 300px;
float: left;
}
#add-movie .moviename{
text-align: center;
}
#add-movie button{
border: 1px solid #9361bf;
background: #bf6190;
padding 10px 20px;
font-size: 16px;
display: inline-block;
margin: 0 0 0 125px;
border-radius: 0 4px 0 4px;
cursor: pointer;
width: 100px;
float: left;
border-left: 0;
color: white;
}
#add-movie:after{
content: '';
display: block;
clear: both;
}
#add-movie #hide{
width: 30px;
}
#add-movie label{
line-height: 52px;
}